| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- .stocks-title {
- margin-top: 30px;
- display: flex;
- align-items: center;
- }
- .stocks-title::before {
- content: "";
- margin-right: 10px;
- display: block;
- width: 6px;
- height: 20px;
- border-radius: 3px;
- background-color: #00c0ff;
- }
- .ant-table-cell {
- padding-left: 25px !important;
- }
- .no-tab .ant-table-cell {
- padding-left: 0 !important;
- }
- .ant-table-thead .ant-table-cell:nth-child(1) {
- padding-left: 25px !important;
- }
- .first-table tr {
- display: flex;
- }
- .first-table .ant-table-cell:nth-child(1) {
- flex: 2;
- }
- .first-table .ant-table-cell:nth-child(2) {
- flex: 1;
- }
- .second-table tr {
- display: flex;
- }
- .second-table .ant-table-cell {
- flex: 1;
- }
|