From 99b64c0faca7b87ee4513b45359eb77f250aa0aa Mon Sep 17 00:00:00 2001 From: Test Date: Mon, 2 Mar 2026 20:00:18 +0100 Subject: [PATCH] style: remove letter-spacing from status/property labels in inspector --- src/components/DynamicPropertiesPanel.tsx | 2 +- src/components/StatusDropdown.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/DynamicPropertiesPanel.tsx b/src/components/DynamicPropertiesPanel.tsx index 7a4b9291..f48a2717 100644 --- a/src/components/DynamicPropertiesPanel.tsx +++ b/src/components/DynamicPropertiesPanel.tsx @@ -129,7 +129,7 @@ function TagsValue({ propKey, value, isEditing, vaultTags, onSave, onStartEdit } fontFamily: "'IBM Plex Mono', monospace", fontSize: 10, fontWeight: 600, - letterSpacing: '1.2px', + letterSpacing: '0', textTransform: 'uppercase' as const, overflow: 'hidden', whiteSpace: 'nowrap' as const, diff --git a/src/components/StatusDropdown.tsx b/src/components/StatusDropdown.tsx index dc3b7e8d..89846b34 100644 --- a/src/components/StatusDropdown.tsx +++ b/src/components/StatusDropdown.tsx @@ -16,7 +16,7 @@ export function StatusPill({ status, className }: { status: string; className?: fontFamily: "'IBM Plex Mono', monospace", fontSize: 10, fontWeight: 600, - letterSpacing: '1.2px', + letterSpacing: '0', textTransform: 'uppercase' as const, maxWidth: 160, }} @@ -101,7 +101,7 @@ const SECTION_LABEL_STYLE = { fontFamily: "'IBM Plex Mono', monospace", fontSize: 9, fontWeight: 500, - letterSpacing: '1.2px', + letterSpacing: '0', textTransform: 'uppercase' as const, }