noData.scss 587 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @import "../variables.scss";
  2. // NoData 样式
  3. .#{$prefix}no-data {
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: center;
  7. align-items: center;
  8. padding: 20px 0;
  9. &.small {
  10. .#{$prefix}no-data__img {
  11. //width: 108px;
  12. font-size: 60px;
  13. }
  14. }
  15. &.large {
  16. .#{$prefix}no-data__img {
  17. //font-size: 120px;
  18. //width: 162px;
  19. font-size: 120px;
  20. }
  21. }
  22. &--full {
  23. width: 100%;
  24. height: 100%;
  25. }
  26. &__img {
  27. font-size: 80px;
  28. pointer-events: none;
  29. }
  30. .message {
  31. color: $le-color_4;
  32. line-height: initial;
  33. font-size: 12px;
  34. }
  35. }