styled.ts 419 B

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