.main-table {
|
padding: 0 20px 110px;
|
table {
|
max-width: 100%;
|
width: 100%;
|
.ant-table-column-title {
|
white-space: nowrap;
|
}
|
.ant-table-selection-column {
|
width: 60px;
|
min-width: 60px;
|
max-width: 60px;
|
}
|
.ant-table-tbody > tr.ant-table-row-selected td {
|
background-color: #c4ebfd;
|
}
|
}
|
.ant-table-body {
|
overflow-x: auto!important;
|
}
|
.ant-table-body::-webkit-scrollbar {
|
width: 8px;
|
height: 10px;
|
}
|
::-webkit-scrollbar-thumb {
|
border-radius: 5px;
|
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.13);
|
background: rgba(0, 0, 0, 0.13);
|
}
|
::-webkit-scrollbar-track {/*滚动条里面轨道*/
|
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
|
border-radius: 3px;
|
border: 1px solid rgba(0, 0, 0, 0.07);
|
background: rgba(0, 0, 0, 0);
|
}
|
}
|