58 lines
No EOL
813 B
SCSS
58 lines
No EOL
813 B
SCSS
.layout {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.layout-wrapper {
|
|
padding: 24px;
|
|
}
|
|
|
|
.ant-header {
|
|
display: flex;
|
|
}
|
|
|
|
.ant-layout-has-sider > .ant-flex {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.ant-layout-content {
|
|
background: #141414;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: unset;
|
|
|
|
& > .ant-table-wrapper {
|
|
.ant-table-pagination {
|
|
margin: 24px;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.panel-layout {
|
|
background: #141414;
|
|
}
|
|
|
|
.panel-layout > .ant-layout-content {
|
|
flex: auto;
|
|
}
|
|
|
|
.ant-page-content {
|
|
padding-left: 24px;
|
|
padding-right: 24px;
|
|
|
|
& > .ant-flex:last-child {
|
|
padding-bottom: 24px;
|
|
}
|
|
|
|
& > .ant-btn:last-child {
|
|
margin-bottom: 24px;
|
|
}
|
|
}
|
|
|
|
.ant-layout-footer {
|
|
text-align: center;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
} |