fix: update login button and sidebar

This commit is contained in:
shadcn 2023-06-13 18:14:06 +04:00
parent 5c2a3d4c3b
commit 282ef825cb
5 changed files with 72 additions and 40 deletions

View file

@ -85,13 +85,7 @@ const SheetHeader = ({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) => (
<div
className={cn(
'flex flex-col space-y-2 text-center sm:text-left',
className
)}
{...props}
/>
<div className={cn('flex flex-col space-y-2', className)} {...props} />
)
SheetHeader.displayName = 'SheetHeader'