index.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
  2. /* stylelint-disable no-duplicate-selectors */
  3. .ant-statistic {
  4. box-sizing: border-box;
  5. margin: 0;
  6. padding: 0;
  7. color: rgba(0, 0, 0, 0.85);
  8. font-size: 14px;
  9. font-variant: tabular-nums;
  10. line-height: 1.5715;
  11. list-style: none;
  12. font-feature-settings: 'tnum';
  13. }
  14. .ant-statistic-title {
  15. margin-bottom: 4px;
  16. color: rgba(0, 0, 0, 0.45);
  17. font-size: 14px;
  18. }
  19. .ant-statistic-skeleton {
  20. padding-top: 16px;
  21. }
  22. .ant-statistic-content {
  23. color: rgba(0, 0, 0, 0.85);
  24. font-size: 24px;
  25. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  26. }
  27. .ant-statistic-content-value {
  28. display: inline-block;
  29. direction: ltr;
  30. }
  31. .ant-statistic-content-prefix,
  32. .ant-statistic-content-suffix {
  33. display: inline-block;
  34. }
  35. .ant-statistic-content-prefix {
  36. margin-right: 4px;
  37. }
  38. .ant-statistic-content-suffix {
  39. margin-left: 4px;
  40. }
  41. .ant-statistic-rtl {
  42. direction: rtl;
  43. }
  44. .ant-statistic-rtl .ant-statistic-content-prefix {
  45. margin-right: 0;
  46. margin-left: 4px;
  47. }
  48. .ant-statistic-rtl .ant-statistic-content-suffix {
  49. margin-right: 4px;
  50. margin-left: 0;
  51. }