index.scss 419 B

1234567891011121314151617181920212223242526272829303132333435
  1. // @import url("./root.css");
  2. [rise-fall='green_rise']{
  3. // 绿涨红跌
  4. .rise{
  5. color: #06c174;
  6. }
  7. .fall{
  8. color: red;
  9. }
  10. .rise-btn{
  11. background-color: #06c174;
  12. }
  13. .fall-btn{
  14. background-color: red;
  15. }
  16. }
  17. [rise-fall='red_rise']{
  18. // 红涨绿跌
  19. .fall{
  20. color: #06c174;
  21. }
  22. .rise{
  23. color: red;
  24. }
  25. // 红涨绿跌
  26. .fall-btn{
  27. background-color: #06c174;
  28. }
  29. .rise-btn{
  30. background-color: red;
  31. }
  32. }