app.css 508 B

12345678910111213141516171819202122232425262728
  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. }
  9. .LoadingMessage {
  10. position: fixed;
  11. top: 0;
  12. right: 0;
  13. bottom: 0;
  14. left: 0;
  15. z-index: 999;
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. pointer-events: none;
  20. }
  21. .LoadingMessage span {
  22. background-color: rgba(255, 255, 255, 0.8);
  23. border-radius: 5px;
  24. padding: 0.8em 1.2em;
  25. font-size: 1.3em;
  26. }