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
+1 -1
View File
@@ -68,7 +68,7 @@ const toggleMoreMenu = () => {
close-on-content-click close-on-content-click
:scrim="false" :scrim="false"
style="margin-bottom: calc(3.5rem + env(safe-area-inset-bottom))" style="margin-bottom: calc(3.5rem + env(safe-area-inset-bottom))"
content-class="elevation-1" content-class="elevation-0"
> >
<VDivider /> <VDivider />
<VList class="font-bold" lines="one"> <VList class="font-bold" lines="one">
+15
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 { #nprogress .bar {
background: rgb(var(--v-theme-primary)) !important; background: rgb(var(--v-theme-primary)) !important;
inset-block-start: env(safe-area-inset-top) !important; inset-block-start: env(safe-area-inset-top) !important;