From 4cad8ed29221ba8fa5e3449d440a129794f06e70 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 24 May 2026 16:21:00 +0000 Subject: [PATCH] Right-align text in FX Rate input to match Amount field https://claude.ai/code/session_01MbwfxnjLA9KdFTrfzB55HM --- app/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.html b/app/index.html index 7b651c3..67695c0 100644 --- a/app/index.html +++ b/app/index.html @@ -366,7 +366,7 @@ function renderLine(ln, item) { if (progAreaEl) progAreaEl._refresh(); }); - const fxIn = el('input', {type:'text', value: ln.fxRate, style:{width:'120px'}, placeholder:'0.00000'}); + const fxIn = el('input', {type:'text', value: ln.fxRate, style:{width:'120px', textAlign:'right'}, placeholder:'0.00000'}); fxIn.readOnly = ln.currency === baseCur; fxIn.className = 'tip'; fxIn.dataset.tip = `Units of ${ln.currency || '?'} per 1 ${baseCur}`;