fix: update drawer to latest
this update allows drawer to support native scrolling, with touch scrolling in mobile device
This commit is contained in:
parent
7b8d306649
commit
cc495be879
@ -146,7 +146,7 @@ const drawerContentColors = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const [drawerContentVariant, resolveDrawerContentVariantProps] = vcn({
|
const [drawerContentVariant, resolveDrawerContentVariantProps] = vcn({
|
||||||
base: `fixed ${drawerContentColors.background} ${drawerContentColors.border} transition-all p-4 flex flex-col justify-between gap-8`,
|
base: `fixed ${drawerContentColors.background} ${drawerContentColors.border} transition-all p-4 flex flex-col justify-between gap-8 overflow-auto`,
|
||||||
variants: {
|
variants: {
|
||||||
position: {
|
position: {
|
||||||
top: "top-0 inset-x-0 w-full max-w-screen rounded-t-lg border-b-2",
|
top: "top-0 inset-x-0 w-full max-w-screen rounded-t-lg border-b-2",
|
||||||
@ -155,7 +155,7 @@ const [drawerContentVariant, resolveDrawerContentVariantProps] = vcn({
|
|||||||
right: "right-0 inset-y-0 h-screen rounded-r-lg border-l-2",
|
right: "right-0 inset-y-0 h-screen rounded-r-lg border-l-2",
|
||||||
},
|
},
|
||||||
opened: {
|
opened: {
|
||||||
true: "touch-none",
|
true: "",
|
||||||
false:
|
false:
|
||||||
"[&.top-0]:-translate-y-full [&.bottom-0]:translate-y-full [&.left-0]:-translate-x-full [&.right-0]:translate-x-full",
|
"[&.top-0]:-translate-y-full [&.bottom-0]:translate-y-full [&.left-0]:-translate-x-full [&.right-0]:translate-x-full",
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user