app.scss 562 B

123456789101112131415161718192021222324252627282930
  1. .visually-hidden {
  2. position: absolute !important;
  3. height: 1px;
  4. width: 1px;
  5. overflow: hidden;
  6. clip: rect(1px, 1px, 1px, 1px);
  7. white-space: nowrap; /* added line */
  8. user-select: none;
  9. }
  10. .LoadingMessage {
  11. position: absolute;
  12. top: 0;
  13. right: 0;
  14. bottom: 0;
  15. left: 0;
  16. z-index: 999;
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. pointer-events: none;
  21. }
  22. .LoadingMessage span {
  23. background-color: var(--button-gray-1);
  24. border-radius: 5px;
  25. padding: 0.8em 1.2em;
  26. color: var(--popup-text-color);
  27. font-size: 1.3em;
  28. }