ui: no centered dialog headings and a few other tweaks

This commit is contained in:
henrygd
2026-03-31 15:40:52 -04:00
parent d548a012b4
commit 20b0b40ec8
7 changed files with 13 additions and 13 deletions

View File

@@ -43,7 +43,7 @@ const AlertDialogContent = React.forwardRef<
AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName
const AlertDialogHeader = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => (
<div className={cn("grid gap-2 text-center sm:text-start", className)} {...props} />
<div className={cn("grid gap-2 text-start", className)} {...props} />
)
AlertDialogHeader.displayName = "AlertDialogHeader"