【issues/7548】侧边栏导航模式时会导致下面菜单滚动显示不全

pull/7625/head
JEECG 2024-12-17 09:43:00 +08:00
parent 44f7075316
commit 5c9c2dbebe
1 changed files with 3 additions and 1 deletions

View File

@ -83,7 +83,9 @@
const getWrapperStyle = computed((): CSSProperties => {
return {
height: `calc(100% - ${unref(getIsShowLogo) ? '48px' : '0px'})`,
// update-begin--author:liaozhiyang---date:20241216---forissues/7548
height: `calc(100% - ${unref(getIsShowLogo) ? '60px' : '0px'})`,
// update-end--author:liaozhiyang---date:20241216---forissues/7548
};
});