index.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
  2. /* stylelint-disable no-duplicate-selectors */
  3. /* stylelint-disable */
  4. /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
  5. .ant-statistic {
  6. box-sizing: border-box;
  7. margin: 0;
  8. padding: 0;
  9. color: rgba(0, 0, 0, 0.85);
  10. font-size: 14px;
  11. font-variant: tabular-nums;
  12. line-height: 1.5715;
  13. list-style: none;
  14. font-feature-settings: 'tnum';
  15. }
  16. .ant-statistic-title {
  17. margin-bottom: 4px;
  18. color: rgba(0, 0, 0, 0.45);
  19. font-size: 14px;
  20. }
  21. .ant-statistic-content {
  22. color: rgba(0, 0, 0, 0.85);
  23. font-size: 24px;
  24. 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';
  25. }
  26. .ant-statistic-content-value {
  27. display: inline-block;
  28. direction: ltr;
  29. }
  30. .ant-statistic-content-prefix,
  31. .ant-statistic-content-suffix {
  32. display: inline-block;
  33. }
  34. .ant-statistic-content-prefix {
  35. margin-right: 4px;
  36. }
  37. .ant-statistic-content-suffix {
  38. margin-left: 4px;
  39. }
  40. .ant-statistic-rtl {
  41. direction: rtl;
  42. }
  43. .ant-statistic-rtl .ant-statistic-content-prefix {
  44. margin-right: 0;
  45. margin-left: 4px;
  46. }
  47. .ant-statistic-rtl .ant-statistic-content-suffix {
  48. margin-right: 4px;
  49. margin-left: 0;
  50. }