1234567891011121314151617181920212223242526272829303132333435 |
- @import "~antd/lib/style/themes/default.less";
- .container {
- .buttonWrapper {
- height: 50px;
- line-height: 50px;
- text-align: center;
- vertical-align: middle;
- border-top: 2px dashed #eee;
- margin-top: 10px;
- }
- }
- .table {
- :global {
- .ant-table-wrapper {
- height: 300px;
- }
- .ant-table-tbody > tr > td {
- padding: 5px;
- }
- .ant-table-thead > tr > th {
- padding: 10px 5px;
- }
- .ant-table-footer {
- height: 46px;
- padding: 5px;
- }
- .ant-table-row {
- &:hover {
- cursor: pointer;
- }
- }
- }
- }
|