styled.ts 444 B

1234567891011121314151617181920212223242526
  1. import styled from 'styled-components';
  2. export const Wrapper = styled.div`
  3. position: fixed;
  4. top: 0;
  5. bottom: 0;
  6. left: 0;
  7. right: 0;
  8. z-index: 100;
  9. display: none;
  10. justify-content: center;
  11. align-items: center;
  12. `;
  13. export const Bg = styled.div`
  14. background-color: rgba(0, 0, 0, 0.5);
  15. width: 100%;
  16. height: 100%;
  17. `;
  18. export const CloseImg = styled.img`
  19. position: fixed;
  20. top: 50px;
  21. right: 50px;
  22. transform: scale(5.5);
  23. `;