| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .IntegralEdit {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- background-color: rgb(239, 239, 239);
- :global {
- .pageTitle {
- width: 100%;
- font-size: 25px;
- display: flex;
- justify-content: space-between;
-
- &:nth-child(2) {
- margin-left: 10px;
- }
- }
- .pageTitle::before {
- background: none;
- }
- .tableMain {
- border-radius: 10px;
- height: 92%;
- margin-top: 5%;
- background-color: #fff;
- ::-webkit-scrollbar {
- /*滚动条整体样式*/
- width: 0;
- /*高宽分别对应横竖滚动条的尺寸*/
- height: 0;
- }
- .ant-table-body {
- height: 500px;
- }
- }
- }
- }
|