| 123456789101112131415161718192021222324252627 |
- @use '~/styles/modal';
- .grw-presentation-modal :global {
- /* stylelint-disable-next-line length-zero-no-unit */
- @include modal.expand-modal-fullscreen(false, false, 0px);
- .modal-content {
- background-color: transparent;
- border-radius: 0;
- }
- .grw-presentation-controls {
- position: absolute;
- top: 1rem;
- right: 1rem;
- z-index: 110; // over ".reveal .slides"
- }
- .btn-close {
- display: inline-block;
- width: 3rem;
- height: 3rem;
- font-size: 1.5rem;
- opacity: 0.3;
- }
- }
|