mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-08 17:26:41 +08:00
fix(Footer): 修改对话框内容类以调整样式;添加隐藏滚动条的样式混合
This commit is contained in:
@@ -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">
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user