Presentation.module.scss 401 B

12345678910111213141516171819202122
  1. .grw-presentation {
  2. // workaround from https://github.com/css-modules/css-modules/issues/295#issuecomment-952885628
  3. &:global(.reveal) :global {
  4. .slides {
  5. text-align: unset;
  6. section {
  7. position: absolute;
  8. width: 100%;
  9. }
  10. }
  11. .controls {
  12. bottom: 24px;
  13. color: var(--color-global);
  14. }
  15. .progress {
  16. color: var(--accent);
  17. }
  18. }
  19. }