| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .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;
- }
- .indent-level-1 {
- padding-left: 0 !important;
- }
- h4.ant-typography {
- font-size: 24px !important;
- }
|