Skip to content

Commit

Permalink
chore: prevent drawer handle shrink
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-stumpf committed Nov 19, 2024
1 parent a93b937 commit ac9a26b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/ui/Drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const DrawerContent = forwardRef<
)}
{...props}
>
<div className="mx-auto mt-4 h-2 w-[100px] rounded-full bg-drawer-handle" />
<div className="mx-auto mt-4 min-h-2 w-[100px] rounded-full bg-drawer-handle" />
{children}
</DrawerPrimitive.Content>
</DrawerPortal>
Expand Down

0 comments on commit ac9a26b

Please sign in to comment.