index.less 481 B

12345678910111213141516171819202122232425262728293031
  1. @import "~antd/lib/style/themes/default.less";
  2. @import "../../utils/utils.less";
  3. .trendItem {
  4. display: inline-block;
  5. font-size: @font-size-base;
  6. line-height: 22px;
  7. .up,
  8. .down {
  9. margin-left: 4px;
  10. position: relative;
  11. top: 1px;
  12. i {
  13. font-size: 12px;
  14. transform: scale(0.83);
  15. }
  16. }
  17. .up {
  18. color: @red-6;
  19. }
  20. .down {
  21. color: @green-6;
  22. top: -1px;
  23. }
  24. &.trendItemGrey .up,
  25. &.trendItemGrey .down {
  26. color: @text-color;
  27. }
  28. }