LANCommander/LANCommander.Server/Styles/_layout.scss

58 lines
813 B
SCSS
Raw Permalink Normal View History

2025-02-03 17:49:04 -06:00
.layout {
min-height: 100vh;
}
2025-02-03 18:04:46 -06:00
.layout-wrapper {
padding: 24px;
}
2025-02-03 17:49:04 -06:00
.ant-header {
display: flex;
}
.ant-layout-has-sider > .ant-flex {
2024-10-22 19:54:38 -05:00
flex-grow: 1;
}
2025-02-03 17:49:04 -06:00
.ant-layout-content {
2024-10-22 19:54:38 -05:00
background: #141414;
2025-02-03 17:49:04 -06:00
display: flex;
flex-direction: column;
2025-02-03 18:04:46 -06:00
flex: unset;
2024-10-22 19:54:38 -05:00
& > .ant-table-wrapper {
.ant-table-pagination {
margin: 24px;
margin-bottom: 0;
}
}
2025-02-03 18:04:46 -06:00
}
2025-11-21 13:20:02 -06:00
.panel-layout {
background: #141414;
}
2025-02-04 00:36:44 -06:00
.panel-layout > .ant-layout-content {
flex: auto;
}
2025-02-04 19:32:33 -06:00
.ant-page-content {
padding-left: 24px;
padding-right: 24px;
& > .ant-flex:last-child {
padding-bottom: 24px;
}
& > .ant-btn:last-child {
margin-bottom: 24px;
}
}
2025-02-03 18:04:46 -06:00
.ant-layout-footer {
text-align: center;
}
.hidden {
display: none;
2024-10-22 19:54:38 -05:00
}