empty.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @import './variables.scss';
  2. $module: #{$prefix}-empty;
  3. .#{$module} {
  4. display: flex;
  5. &-image {
  6. display: flex;
  7. justify-content: center;
  8. user-select: none;
  9. -webkit-user-drag: none;
  10. pointer-events: none;
  11. }
  12. &-vertical {
  13. align-items: center;
  14. flex-direction: column;
  15. .#{$module}-content {
  16. margin-top: $spacing-empty_content_vertical-marginTop;
  17. }
  18. .#{$module}-title,
  19. .#{$module}-description {
  20. text-align: center;
  21. }
  22. }
  23. &-horizontal {
  24. .#{$module}-content {
  25. margin-left: $spacing-empty_content_horizontal-marginLeft;
  26. }
  27. }
  28. &-title.#{$prefix}-typography {
  29. display: block;
  30. font-weight: $font-empty_title-fontWeight;
  31. }
  32. &-title+&-description {
  33. margin-top: $spacing-empty_title-marginTop;
  34. }
  35. &-description {
  36. color: $color-empty_description-text-default;
  37. }
  38. &-footer {
  39. margin-top: $spacing-empty_footer-marginTop;
  40. }
  41. }
  42. @import "./rtl.scss";