style.module.less 429B

123456789101112131415161718192021222324252627
  1. .map-wrapper {
  2. width: 100%;
  3. height: 0;
  4. padding-bottom: 50%;
  5. position: relative;
  6. map {
  7. width: 100%;
  8. height: 100%;
  9. position: absolute;
  10. top: 0;
  11. left: 0;
  12. z-index: 2;
  13. .icon {
  14. position: absolute;
  15. bottom: 45px;
  16. right: var(--main-space);
  17. z-index: 3;
  18. }
  19. .loading {
  20. position: fixed;
  21. z-index: 100;
  22. display: grid;
  23. place-items: center;
  24. }
  25. }
  26. }