1234567891011121314151617181920212223242526272829303132 |
- .User {
- :global {
- .selectBox {
- border-radius: 10px;
- padding: 20px 15px;
- background-color: #fff;
- display: flex;
- .selectBoxRow{
- margin-right: 30px;
- }
- }
- .tableBox {
- border-radius: 10px;
- overflow: hidden;
- margin-top: 20px;
- height: calc(100% - 94px);
- background-color: #fff;
- .ant-table-body {
- height: 620px;
- overflow-y: auto !important;
- overflow-y: overlay !important;
- .ant-table-row {
- .ant-table-cell {
- padding: 10px;
- }
- }
- }
- }
- }
- }
|