refactor(dialog/DialogContent): make DialogContent use flex
This commit is contained in:
parent
8c2986700e
commit
13f1d9def3
@ -144,21 +144,15 @@ DialogOverlay.displayName = "DialogOverlay";
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
const [dialogContentVariant, resolveDialogContentVariant] = vcn({
|
const [dialogContentVariant, resolveDialogContentVariant] = vcn({
|
||||||
base: "transition-transform duration-300 bg-white dark:bg-black border border-neutral-200 dark:border-neutral-800 p-6 w-full max-w-xl rounded-md space-y-6",
|
base: "transition-transform duration-300 bg-white dark:bg-black border border-neutral-200 dark:border-neutral-800 p-6 w-full max-w-xl rounded-md flex flex-col justify-start items-start gap-6",
|
||||||
variants: {
|
variants: {
|
||||||
opened: {
|
opened: {
|
||||||
true: "scale-100",
|
true: "scale-100",
|
||||||
false: "scale-50",
|
false: "scale-50",
|
||||||
},
|
},
|
||||||
gap: {
|
|
||||||
sm: "space-y-4",
|
|
||||||
md: "space-y-6",
|
|
||||||
lg: "space-y-8",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
defaults: {
|
defaults: {
|
||||||
opened: false,
|
opened: false,
|
||||||
gap: "md",
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user