refactor(ui): add 48px gap (great for forms)

This commit is contained in:
upsiflu 2025-02-02 19:15:32 +01:00
parent ae312c422a
commit 3e691b3076
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ const props = defineProps<{
noWrap?: true,
} & { [P in "stack" | "grid" | "flex" | "columns" | "row" | "page"]?: true | string }
& { [C in "nav" | "aside" | "header" | "footer" | "main" | "label" | "form" | "h1" | "h2" | "h3" | "h4" | "h5"]?: true }
& { [G in 'no-gap' | `gap-${'4' | '8' | '12' | '16' | '24' | '32' | '64' | 'auto'}` ]?: true }
& { [G in 'no-gap' | `gap-${'4' | '8' | '12' | '16' | '24' | '32' | '48' | '64' | 'auto'}` ]?: true }
& (PastelProps | ColorProps | DefaultProps)
& RaisedProps
& VariantProps