fix: BaseDialog padding (#7428)

This commit is contained in:
Arsène Reymond
2026-04-09 15:53:02 +02:00
committed by GitHub
parent 124d10963e
commit 6b28bb8eb0

View File

@@ -40,9 +40,9 @@
</div> </div>
<v-spacer /> <v-spacer />
<v-divider class="mx-2" /> <v-divider />
<v-card-actions> <v-card-actions :class="$vuetify.display.xs ? 'pb-4' : 'undefined'">
<slot name="card-actions"> <slot name="card-actions">
<v-btn <v-btn
variant="text" variant="text"
@@ -93,13 +93,6 @@
</BaseButton> </BaseButton>
</slot> </slot>
</v-card-actions> </v-card-actions>
<div
v-if="$slots['below-actions']"
class="pb-4"
>
<slot name="below-actions" />
</div>
</v-card> </v-card>
</v-dialog> </v-dialog>
</div> </div>