styled.ts 308 B

1234567891011121314151617
  1. import styled from 'styled-components';
  2. export const Container = styled.div`
  3. padding: 50px 40px;
  4. background-color: white;
  5. width: 730px;
  6. height: 900px;
  7. position: fixed;
  8. left: 0;
  9. right: 0;
  10. top: 0;
  11. margin: auto;
  12. margin-top: 60px;
  13. display: flex;
  14. flex-direction: column;
  15. z-index: 1;
  16. `;