| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .capital-info {
- line-height: 1;
- color : #fff;
- background : @m-grey6;
- &__header {
- display: flex;
- padding: 10px 8px;
- &-content {
- flex: 1;
- span:last-child {
- color: #FFC017;
- }
- }
- &-icon {
- color : @m-black3;
- cursor : pointer;
- margin-left: 8px;
- }
- }
- &__table {
- width : 100%;
- text-align: left;
- tbody {
- td {
- border : 1px solid #343D45;
- padding: 8px;
- &:first-child {
- color : #7A8A94;
- border-left: 0;
- }
- &:last-child {
- text-align : right;
- border-right: 0;
- }
- }
- }
- }
- }
|