fix(Footer): 修改对话框内容类以调整样式;添加隐藏滚动条的样式混合

This commit is contained in:
jxxghp
2025-02-17 20:54:54 +08:00
parent 27bc2a488f
commit f5d0556808
2 changed files with 16 additions and 1 deletions

View File

@@ -68,7 +68,7 @@ const toggleMoreMenu = () => {
close-on-content-click
:scrim="false"
style="margin-bottom: calc(3.5rem + env(safe-area-inset-bottom))"
content-class="elevation-1"
content-class="elevation-0"
>
<VDivider />
<VList class="font-bold" lines="one">

View File

@@ -14,6 +14,21 @@ html.v-overlay-scroll-blocked {
}
}
@mixin hide-scrollbar {
scrollbar-width: none;
-ms-overflow-style: none;
&::-webkit-scrollbar {
display: none;
}
}
@media (max-width: 768px) {
html,body {
@include hide-scrollbar;
}
}
#nprogress .bar {
background: rgb(var(--v-theme-primary)) !important;
inset-block-start: env(safe-area-inset-top) !important;