fix(style): use --app-banner-height in scroller container

This commit is contained in:
jialin
2026-05-21 19:58:16 +08:00
committed by jialin
parent e7a376db70
commit 6f896b4f94
11 changed files with 68 additions and 32 deletions
+22 -1
View File
@@ -1,4 +1,9 @@
.containerWrapper {
display: flex;
flex-direction: column;
flex: 1;
min-height: 0;
:global {
.ant-affix {
top: 0 !important;
@@ -17,8 +22,24 @@
font-size: 16px;
}
.ant-pro-page-container {
display: flex;
flex-direction: column;
min-height: 0;
}
.ant-pro-grid-content,
.ant-pro-grid-content-children {
display: flex;
flex-direction: column;
flex: 1;
min-height: 0;
}
.ant-pro-page-container-children-container {
height: calc(100vh - 16px);
flex: 1;
min-height: 0;
height: auto;
display: flex;
flex-direction: column;
border: 1px solid var(--color-border-container);