feat: 添加对 100dvh 支持的样式调整,优化布局适应性

This commit is contained in:
严浩
2024-12-29 02:01:39 +08:00
parent a09fb23df0
commit 8ea637d7a0
4 changed files with 18 additions and 0 deletions

View File

@@ -5,6 +5,9 @@
justify-content: space-between;
padding: 6rem 2rem 0 2rem;
transition: margin-left var(--layout-section-transition-duration);
@supports (min-height: 100dvh) {
min-height: 100dvh;
}
}
.layout-main {