style.js 305 B

1234567891011121314151617
  1. import styled from 'styled-components';
  2. const Container = styled.div`
  3. display: flex;
  4. flex-flow: row wrap;
  5. height: 100%;
  6. `;
  7. const ComponentWrapper = styled.div`
  8. width: 100%;
  9. padding: 20px;
  10. @media screen and (min-width: 800px) {
  11. width: 70vw;
  12. }
  13. `;
  14. export { Container, ComponentWrapper };