fix: Resizable worked before Net Control

This commit is contained in:
2026-07-08 00:16:00 +02:00
parent e656c79589
commit 44d276c841
3 changed files with 74 additions and 54 deletions
+3 -2
View File
@@ -3652,8 +3652,9 @@ export default function App() {
</div>
{/* Row 2: Name fixed to the Band/Mode/Country column width (300px) so
its right edge lines up with that column below; QTH grows to fill. */}
<div className="flex gap-2 items-end">
its right edge lines up with that column below; QTH grows to fill.
gap-4 matches Row 3 so QTH's left edge aligns with Comment/Note. */}
<div className="flex gap-4 items-end">
<div className="flex flex-col w-[300px] shrink-0"><Label className="mb-1 h-3.5">Name</Label>
<Input value={name} onChange={(e) => { setName(e.target.value); markEdited('name'); }} />
</div>