index.less 880 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .capital-info {
  2. line-height: 1;
  3. color : #fff;
  4. background : @m-grey6;
  5. &__header {
  6. display: flex;
  7. padding: 10px 8px;
  8. &-content {
  9. flex: 1;
  10. span:last-child {
  11. color: #FFC017;
  12. }
  13. }
  14. &-icon {
  15. color : @m-black3;
  16. cursor : pointer;
  17. margin-left: 8px;
  18. }
  19. }
  20. &__table {
  21. width : 100%;
  22. text-align: left;
  23. tbody {
  24. td {
  25. border : 1px solid #343D45;
  26. padding: 8px;
  27. &:first-child {
  28. color : #7A8A94;
  29. border-left: 0;
  30. }
  31. &:last-child {
  32. text-align : right;
  33. border-right: 0;
  34. }
  35. }
  36. }
  37. }
  38. }