style.scss 552 B

12345678910111213141516171819202122232425262728293031
  1. /* 是否可以穿透 */
  2. .loading-mask {
  3. pointer-events: none;
  4. }
  5. /* 是否可以穿透 */
  6. /* toast */
  7. .loading-icon{
  8. @include square(70px);
  9. margin-top: -10px;
  10. }
  11. .loading{
  12. top: 50%;
  13. left: 50%;
  14. transform: translate(-50%,-50%);
  15. font-size: 18px;
  16. color: #fff;
  17. line-height: 24px;
  18. @include square(150px);
  19. padding: 0 20px;
  20. background-color: rgba(0,0,0,0.5);
  21. border-radius: 5px;
  22. letter-spacing: 1px;
  23. opacity: 1 !important;
  24. z-index: 99999;
  25. }
  26. .loading div {
  27. font-size: 18px;
  28. line-height: 20px;
  29. margin-top: 10px;
  30. }
  31. /* toast */