From 51658a47d8c15fcde4322912172625ef2879065b Mon Sep 17 00:00:00 2001 From: TBroz15 Date: Thu, 26 Dec 2024 18:17:31 +0800 Subject: [PATCH] fix: missing opening sheet animation --- apps/docs/src/registry/ui/sheet.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/src/registry/ui/sheet.tsx b/apps/docs/src/registry/ui/sheet.tsx index 63db062..e9b7cc4 100644 --- a/apps/docs/src/registry/ui/sheet.tsx +++ b/apps/docs/src/registry/ui/sheet.tsx @@ -61,7 +61,7 @@ const sheetVariants = cva( top: "inset-x-0 top-0 border-b data-[closed=]:slide-out-to-top data-[expanded=]:slide-in-from-top", bottom: "inset-x-0 bottom-0 border-t data-[closed=]:slide-out-to-bottom data-[expanded=]:slide-in-from-bottom", - left: "inset-y-0 left-0 h-full w-3/4 border-r data-[closed=]:slide-out-to-left data-[expanded]:slide-in-from-left sm:max-w-sm", + left: "inset-y-0 left-0 h-full w-3/4 border-r data-[closed=]:slide-out-to-left data-[expanded=]:slide-in-from-left sm:max-w-sm", right: "inset-y-0 right-0 h-full w-3/4 border-l data-[closed=]:slide-out-to-right data-[expanded=]:slide-in-from-right sm:max-w-sm" }