This commit is contained in:
2026-03-07 23:49:03 +01:00
parent d6181f0c40
commit c0a4ee4ec8
2 changed files with 5 additions and 5 deletions

View File

@@ -124,7 +124,7 @@ export function BaseNodeHeaderRow({
return (
<header
className={cn(
"shrink-0 mx-0 my-0 -mb-1 flex flex-row items-center justify-between gap-2 border-b px-3 py-2",
"shrink-0 mx-0 my-0 flex flex-row items-center justify-between gap-2 px-3 py-2",
className,
)}
>
@@ -162,7 +162,7 @@ export function BaseNodeContent({
return (
<div
data-slot="base-node-content"
className={cn("min-h-0 flex-1 flex flex-col overflow-auto pt-1", className)}
className={cn("min-h-0 flex-1 flex flex-col overflow-auto", className)}
{...props}
/>
);