fix: Fixed card header margin

This commit is contained in:
2026-09-07 08:36:18 +00:00
parent 28f746c7e2
commit 9d17f539b5
4 changed files with 302 additions and 359 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ export function Card({ className, padding = true, children, ...props }: CardProp
export function CardHeader({ className, children, ...props }: HTMLAttributes<HTMLDivElement>) {
return (
<div className={clsx("mb-4 flex flex-wrap items-center justify-between gap-2", className)} {...props}>
<div className={clsx("flex flex-wrap items-center justify-between gap-2", className)} {...props}>
{children}
</div>
);