feat: 调整 AppLayout 和 AppMenu 组件样式,优化底部菜单位置和间距

This commit is contained in:
algerkong
2025-04-18 19:18:37 +08:00
parent a676136f48
commit 25b90fafdc
2 changed files with 6 additions and 3 deletions

View File

@@ -146,6 +146,7 @@ provide('openPlaylistDrawer', openPlaylistDrawer);
overflow: auto;
display: block;
flex: none;
padding-bottom: 70px;
}
}
</style>

View File

@@ -113,8 +113,10 @@ const isText = ref(false);
.app-menu {
max-width: 100%;
width: 100vw;
position: relative;
z-index: 999999;
position: fixed;
bottom: 0;
left: 0;
z-index: 99999;
@apply bg-light dark:bg-black border-t border-gray-200 dark:border-gray-700;
&-header {
@@ -122,7 +124,7 @@ const isText = ref(false);
}
&-list {
@apply flex justify-between;
@apply flex justify-between px-4;
}
&-item {