Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. import styled from 'styled-components';
  2.  
  3. export const Header = styled.header`
  4. height: 150px;
  5. background: ${props => props.color};
  6. display: flex;
  7. flex-direction: column;
  8. align-items: center;
  9. justify-content: center;
  10.  
  11. h1 {
  12. font-size: 38px;
  13. color: #eee;
  14. }
  15.  
  16. p {
  17. font-size: 28px;
  18. color: #ddd;
  19. margin-top: 10px;
  20. }
  21.  
  22. button {
  23. display: flex;
  24. }
  25. `;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement