mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-12 02:21:06 +08:00
fix dialog layout
This commit is contained in:
@@ -319,7 +319,7 @@ onMounted(() => {
|
||||
</VCard>
|
||||
</VDialog>
|
||||
<!-- 站点编辑弹窗 -->
|
||||
<VDialog v-model="siteInfoDialog" max-width="1000" persistent>
|
||||
<VDialog v-model="siteInfoDialog" max-width="1000" persistent scrollable>
|
||||
<!-- Dialog Content -->
|
||||
<VCard :title="`编辑站点 - ${props.site?.name}`">
|
||||
<VCardText>
|
||||
|
||||
@@ -301,7 +301,7 @@ const subscribeForm = reactive({
|
||||
/>
|
||||
</VCard>
|
||||
<!-- 订阅编辑弹窗 -->
|
||||
<VDialog v-model="subscribeInfoDialog" max-width="1000" persistent>
|
||||
<VDialog v-model="subscribeInfoDialog" max-width="1000" persistent scrollable>
|
||||
<!-- Dialog Content -->
|
||||
<VCard :title="`编辑订阅 - ${props.media?.name}`">
|
||||
<VCardText>
|
||||
|
||||
@@ -36,9 +36,8 @@
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.v-overlay__content {
|
||||
margin-top: env(safe-area-inset-top) !important;
|
||||
padding-bottom: env(safe-area-inset-bottom) !important;
|
||||
margin-left: 0.5rem;
|
||||
margin-right: 0.5rem;
|
||||
.v-dialog > .v-overlay__content {
|
||||
margin-top: calc(env(safe-area-inset-top) + 1rem) !important;
|
||||
max-height: calc(100% - env(safe-area-inset-top) - 2rem) !important;
|
||||
margin: 0.5rem;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user