fix: 🐛 顶部布局模式 AppMain 高度调整

This commit is contained in:
郝先瑞
2024-02-22 23:43:16 +08:00
parent 82e841da66
commit a50583e7be

View File

@@ -73,11 +73,13 @@ const cachedViews = computed(() => tagsViewStore.cachedViews); // 缓存页面
.layout-top {
.fixed-header + .app-main {
min-height: calc(100vh - $navbar-height);
padding-top: 0;
}
.hasTagsView {
.fixed-header + .app-main {
min-height: calc(100vh - $navbar-height);
padding-top: $tags-view-height;
}
}