styled.ts 450 B

12345678910111213141516171819202122232425262728
  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: 270px;
  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. `;
  17. export const Text = styled.p`
  18. text-align: center;
  19. font-size: 1.35rem;
  20. color: #757575;
  21. `;
  22. export default {
  23. Container,
  24. Text,
  25. };