fix: 页面使用最外层滚动

This commit is contained in:
Tim
2025-08-05 18:35:51 +08:00
parent 7292834700
commit 05e28123ed
3 changed files with 3 additions and 9 deletions

View File

@@ -269,7 +269,7 @@ export default {
<style scoped>
.menu {
position: sticky;
top: 0;
top: var(--header-height);
width: 200px;
background-color: var(--menu-background-color);
height: calc(100vh - 20px - var(--header-height));
@@ -279,7 +279,6 @@ export default {
padding: 10px;
overflow-y: auto;
scrollbar-width: none;
padding-top: calc(var(--header-height) + 10px);
}
.menu-item-container {