fix(studio): give flat Text section rows more vertical breathing room

6px between rows left little clearance above a row's value for the
promote-to-variable badge (now positioned above the row). Widen the
row gap to 10px.
This commit is contained in:
Vance Ingalls
2026-07-16 01:17:04 -07:00
parent 5f045b6bdf
commit 14dbfca5a7
@@ -267,7 +267,7 @@ export function FlatTextSection({
if (textFields.length > 1) { if (textFields.length > 1) {
return ( return (
<div className="space-y-1.5"> <div className="space-y-2.5">
<FlatTextLayerList <FlatTextLayerList
fields={textFields} fields={textFields}
activeFieldKey={activeField.key} activeFieldKey={activeField.key}
@@ -295,7 +295,7 @@ export function FlatTextSection({
} }
return ( return (
<div className="space-y-1.5"> <div className="space-y-2.5">
<FlatTextFieldEditor <FlatTextFieldEditor
field={activeField} field={activeField}
styles={styles} styles={styles}