fix(Modal/Slideover): fixed header height

Resolves #3333
This commit is contained in:
Benjamin Canac
2025-02-19 15:19:36 +01:00
parent 09492f79f2
commit d33a83e147
6 changed files with 74 additions and 74 deletions

View File

@@ -2,7 +2,7 @@ export default {
slots: {
overlay: 'fixed inset-0 bg-(--ui-bg-elevated)/75',
content: 'fixed bg-(--ui-bg) divide-y divide-(--ui-border) flex flex-col focus:outline-none',
header: 'px-4 py-5 sm:px-6',
header: 'flex items-center gap-1.5 p-4 sm:px-6 min-h-16',
body: 'flex-1 overflow-y-auto p-4 sm:p-6',
footer: 'flex items-center gap-1.5 p-4 sm:px-6',
title: 'text-(--ui-text-highlighted) font-semibold',

View File

@@ -2,7 +2,7 @@ export default {
slots: {
overlay: 'fixed inset-0 bg-(--ui-bg-elevated)/75',
content: 'fixed bg-(--ui-bg) divide-y divide-(--ui-border) sm:ring ring-(--ui-border) sm:shadow-lg flex flex-col focus:outline-none',
header: 'px-4 py-5 sm:px-6',
header: 'flex items-center gap-1.5 p-4 sm:px-6 min-h-16',
body: 'flex-1 overflow-y-auto p-4 sm:p-6',
footer: 'flex items-center gap-1.5 p-4 sm:px-6',
title: 'text-(--ui-text-highlighted) font-semibold',