diff --git a/src-web/components/core/Dialog.tsx b/src-web/components/core/Dialog.tsx index b4df6197..db4be1d0 100644 --- a/src-web/components/core/Dialog.tsx +++ b/src-web/components/core/Dialog.tsx @@ -55,7 +55,7 @@ export function Dialog({ className, 'gap-2 grid grid-rows-[auto_minmax(0,1fr)]', 'relative bg-gray-50 pointer-events-auto', - 'p-5 rounded-lg overflow-auto', + 'px-6 py-4 rounded-lg overflow-auto', 'dark:border border-highlight shadow shadow-black/10', 'max-w-[90vw] max-h-[calc(100vh-8em)]', size === 'sm' && 'w-[25rem] max-h-[80vh]', @@ -66,8 +66,7 @@ export function Dialog({ > {title ? ( - {' '} - {title}{' '} + {title} ) : ( @@ -80,7 +79,7 @@ export function Dialog({
{ size?: 1 | 2 | 3;