fix menu position

This commit is contained in:
Timi
2025-12-11 14:46:55 +08:00
parent fc6edcb5ab
commit 0cdef54954
3 changed files with 58 additions and 27 deletions

View File

@ -1,21 +1,22 @@
.custom-navbar {
// 导航栏样式
}
.more-menu {
top: 0;
left: 0;
width: 100%;
height: 100%;
.more-menu {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 999;
position: fixed;
background: var(--theme-bg-overlay);
.content {
z-index: 1000;
position: fixed;
background: var(--theme-bg-overlay);
.content {
margin: 190rpx 0 0 12rpx;
z-index: 1;
position: fixed;
background: var(--theme-bg-menu);
box-shadow: 0 0 12px var(--theme-shadow-medium);
border-radius: 2px;
}
background: var(--theme-bg-menu);
box-shadow: 0 0 12px var(--theme-shadow-medium);
border-radius: 8rpx;
}
}