ShortenerTitle.js 450 B

12345678910111213141516171819202122232425
  1. import React from 'react';
  2. import styled from 'styled-components';
  3. const Title = styled.h1`
  4. font-size: 32px;
  5. font-weight: 300;
  6. margin: 8px 0 0;
  7. color: #333;
  8. @media only screen and (max-width: 448px) {
  9. font-size: 22px;
  10. }
  11. `;
  12. const Underline = styled.span`
  13. border-bottom: 2px dotted #999;
  14. `;
  15. const ShortenerTitle = () => (
  16. <Title>
  17. Kutt your links <Underline>shorter</Underline>.
  18. </Title>
  19. );
  20. export default ShortenerTitle;