Fix scrolling on dialog (#15823)

* fix scrolling on dialog

* Update app/src/interfaces/input-rich-text-html/input-rich-text-html.vue

Co-authored-by: Rijk van Zanten <rijkvanzanten@me.com>
This commit is contained in:
Nitwel
2022-10-15 04:36:01 +02:00
committed by GitHub
parent 990b26cb78
commit 64901d736c

View File

@@ -23,7 +23,7 @@
</span>
</template>
<v-dialog v-model="linkDrawerOpen">
<v-card>
<v-card class="card">
<v-card-title class="card-title">{{ t('wysiwyg_options.link') }}</v-card-title>
<v-card-text>
<div class="grid">
@@ -573,8 +573,12 @@ export default defineComponent({
padding-bottom: var(--content-padding);
}
:deep(.v-card-title) {
margin-bottom: 24px;
font-size: 24px;
.card {
overflow: auto;
.card-title {
margin-bottom: 24px;
font-size: 24px;
}
}
</style>