1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- .flexBase {
- display: flex;
- justify-content: center;
- align-items: center;
- background: #f9f9f9;
- }
- .table_header_wrapper {
- width: 100%;
- height: 60px;
- display: flex;
- border-top: 1px solid rgba(217, 218, 219, .8);
- .left:extend(.flexBase) {
- width: 73px;
- height: 100%;
- background: white;
- box-shadow: 0px 0px 0px 1px rgba(217, 218, 219, .8);
- }
- .right {
- width: calc(100% - 73px);
- height: 100%;
- .top {
- display: flex;
- width: 100%;
- height: 40px;
- .before:extend(.flexBase) {
- width: 50%;
- height: 100%;
- border-right: 1px solid rgba(217, 218, 219, .8);
- border-left: 1px solid rgba(217, 218, 219, .8);
- }
- .after :extend(.flexBase) {
- width: 50%;
- height: 100%;
- border-right: 1px solid rgba(217, 218, 219, .8);
- }
- }
- .foot {
- width: 100%;
- height: calc(100% - 40px);
- display: grid;
- grid-template-columns: repeat(24, 1fr);
- .ant-typography {
- &:extend(.flexBase);
- &:first-child {
- border-left: 1px solid rgba(217, 218, 219, .8);
- }
- height: 19px;
- border-bottom: 1px solid rgba(217, 218, 219, .8);
- border-top: 1px solid rgba(217, 218, 219, .8);
- border-right: 1px solid rgba(217, 218, 219, .8);
- }
- }
- }
- }
|