PagePresentationModal.module.scss 492 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. .grw-presentation-controls {
  9. position: absolute;
  10. top: 1rem;
  11. right: 1rem;
  12. z-index: 110; // over ".reveal .slides"
  13. }
  14. .close {
  15. display: inline-block;
  16. width: 3rem;
  17. height: 3rem;
  18. font-size: 1.5rem;
  19. color: var(--color-global);
  20. opacity: 0.3;
  21. }
  22. }