index.less 438 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @import '../../app.less';
  2. .g-money {
  3. display: inline-block;
  4. font-size: 10px;
  5. span {
  6. margin-left: 2px;
  7. }
  8. }
  9. .g-money.default {
  10. color: #F5B44A;
  11. }
  12. .g-money.sell {
  13. color: #FF7130;
  14. }
  15. .g-money.basic {
  16. span {
  17. font-size: 14px;
  18. }
  19. }
  20. .g-money.small {
  21. span {
  22. font-size: 12px;
  23. }
  24. }
  25. .g-money.lager {
  26. span {
  27. font-size: 16px;
  28. }
  29. }
  30. .g-money.default.disabled {
  31. color: unset;
  32. text-decoration: line-through;
  33. }