index.scss 763 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @import '../common/abstracts/variable';
  2. @import '../common/abstracts/mixin';
  3. .wot-theme-dark {
  4. background-color: $-dark-background2;
  5. @include b(status-tip) {
  6. @include e(text) {
  7. color: $-dark-color3;
  8. }
  9. }
  10. }
  11. @include b(status-tip) {
  12. padding: $-statustip-padding;
  13. width: 100%;
  14. margin: 0 auto;
  15. color: $-statustip-color;
  16. font-size: $-statustip-fs;
  17. box-sizing: border-box;
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. @include edeep(image) {
  22. margin: 0 auto;
  23. width: 160px;
  24. height: 160px;
  25. }
  26. @include e(text) {
  27. margin: 20px auto 0;
  28. font-size: $-statustip-fs;
  29. line-height: $-statustip-line-height;
  30. color: $-statustip-color;
  31. text-align: center;
  32. overflow-wrap: break-word;
  33. }
  34. }