PagePresentationModal.module.scss 459 B

12345678910111213141516171819202122232425262728
  1. @use '~/styles/_modal';
  2. .grw-presentation-modal :global {
  3. @include modal.expand-modal-fullscreen(false, false, 0px);
  4. .modal-content {
  5. background-color: transparent;
  6. border-radius: 0;
  7. }
  8. .close {
  9. position: absolute;
  10. top: 1rem;
  11. right: 1rem;
  12. z-index: 1;
  13. color: var(--color-global);
  14. span {
  15. display: inline-block;
  16. width: 3rem;
  17. height: 3rem;
  18. font-size: 3rem;
  19. line-height: 3rem;
  20. }
  21. }
  22. }