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
+1
View File
@@ -146,6 +146,7 @@ provide('openPlaylistDrawer', openPlaylistDrawer);
overflow: auto; overflow: auto;
display: block; display: block;
flex: none; flex: none;
padding-bottom: 70px;
} }
} }
</style> </style>
+5 -3
View File
@@ -113,8 +113,10 @@ const isText = ref(false);
.app-menu { .app-menu {
max-width: 100%; max-width: 100%;
width: 100vw; width: 100vw;
position: relative; position: fixed;
z-index: 999999; bottom: 0;
left: 0;
z-index: 99999;
@apply bg-light dark:bg-black border-t border-gray-200 dark:border-gray-700; @apply bg-light dark:bg-black border-t border-gray-200 dark:border-gray-700;
&-header { &-header {
@@ -122,7 +124,7 @@ const isText = ref(false);
} }
&-list { &-list {
@apply flex justify-between; @apply flex justify-between px-4;
} }
&-item { &-item {