解决全屏单据编辑界面后,导致内部弹窗样式的问题

This commit is contained in:
jishenghua
2024-11-03 17:16:09 +08:00
parent 8265c0d226
commit 8197ef78a3
2 changed files with 5 additions and 5 deletions

View File

@@ -198,24 +198,24 @@
height: 100vh;
& .ant-modal-content {
>.ant-modal-content {
height: 100vh;
border-radius: 0;
& .ant-modal-body {
>.ant-modal-body {
/* title 和 footer 各占 55px */
height: calc(100% - 55px - 55px);
overflow: auto;
}
}
&.no-title, &.no-footer {
>.no-title, &.no-footer {
.ant-modal-body {
height: calc(100% - 55px);
}
}
&.no-title.no-footer {
>.no-title.no-footer {
.ant-modal-body {
height: 100%;
}