style.js 330 B

123456789101112131415161718192021
  1. import styled from 'styled-components';
  2. const Header = styled.div`
  3. text-align: center;
  4. background-color: #da3f3d;
  5. height: 100px;
  6. color: white;
  7. flex: 0 1 100%;
  8. h2 {
  9. display: inline-block;
  10. margin: 0 10px;
  11. }
  12. `;
  13. const Logo = styled.img`
  14. height: 100px;
  15. vertical-align: middle;
  16. `;
  17. export { Header, Logo };