diff --git a/src/components/FileBrowser.vue b/src/components/FileBrowser.vue index 12d01c0f..0452c06c 100644 --- a/src/components/FileBrowser.vue +++ b/src/components/FileBrowser.vue @@ -174,15 +174,15 @@ function fileListUpdated(items: FileItem[]) { // 外层DIV大小控制 const scrollStyle = computed(() => { return appMode - ? 'height: calc(100vh - 12rem - env(safe-area-inset-bottom) - 3.5rem)' - : 'height: calc(100vh - 10.5rem - env(safe-area-inset-bottom)' + ? 'height: calc(100vh - 10rem - env(safe-area-inset-bottom) - 6rem)' + : 'height: calc(100vh - 10rem - env(safe-area-inset-bottom)' }) // 文件列表大小限制 const fileListStyle = computed(() => { return appMode - ? 'height: calc(100vh - 16rem - env(safe-area-inset-bottom) - 3.5rem)' - : 'height: calc(100vh - 14.5rem - env(safe-area-inset-bottom)' + ? 'height: calc(100vh - 14rem - env(safe-area-inset-bottom) - 6rem)' + : 'height: calc(100vh - 14rem - env(safe-area-inset-bottom)' }) diff --git a/src/layouts/components/Footer.vue b/src/layouts/components/Footer.vue index 9cb43ce6..0a2cc127 100644 --- a/src/layouts/components/Footer.vue +++ b/src/layouts/components/Footer.vue @@ -84,7 +84,7 @@ const currentPath = computed(() => route.path) -