From 49704bc76d6cd5ce39dc84af84bd16f9bc847dde Mon Sep 17 00:00:00 2001 From: lucaronin Date: Tue, 24 Feb 2026 22:37:37 +0100 Subject: [PATCH] fix: align Type row padding with other property rows in Properties panel ReadOnlyType and TypeSelector containers were missing px-1.5, causing the Type label to sit flush-left while all other property/info rows were indented 6px. Co-Authored-By: Claude Opus 4.6 --- src/components/DynamicPropertiesPanel.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/DynamicPropertiesPanel.tsx b/src/components/DynamicPropertiesPanel.tsx index 48e4958e..7e5fc78c 100644 --- a/src/components/DynamicPropertiesPanel.tsx +++ b/src/components/DynamicPropertiesPanel.tsx @@ -150,7 +150,7 @@ const TYPE_NONE = '__none__' function ReadOnlyType({ isA, onNavigate }: { isA?: string | null; onNavigate?: (target: string) => void }) { if (!isA) return null return ( -
+
Type {onNavigate ? (