PagePresentationModal.module.scss 518 B

123456789101112131415161718192021222324252627
  1. @use '~/styles/modal';
  2. .grw-presentation-modal :global {
  3. /* stylelint-disable-next-line length-zero-no-unit */
  4. @include modal.expand-modal-fullscreen(false, false, 0px);
  5. .modal-content {
  6. background-color: transparent;
  7. border-radius: 0;
  8. }
  9. .grw-presentation-controls {
  10. position: absolute;
  11. top: 1rem;
  12. right: 1rem;
  13. z-index: 110; // over ".reveal .slides"
  14. }
  15. .btn-close {
  16. display: inline-block;
  17. width: 3rem;
  18. height: 3rem;
  19. font-size: 1.5rem;
  20. opacity: 0.3;
  21. }
  22. }