diff options
| author | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-17 13:36:57 -0700 |
|---|---|---|
| committer | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-17 13:36:57 -0700 |
| commit | c3f19f79f66054dc3b3a98999ea38b0f05248e06 (patch) | |
| tree | 2d3b551838bfc8abeb52be20350b729377bceea5 /frontend/components/prism/Sidebar.tsx | |
| parent | 6b8e9470d5b40030172b0413f0c5875fcbe65595 (diff) | |
Refine overview ratios and shell
Diffstat (limited to 'frontend/components/prism/Sidebar.tsx')
| -rw-r--r-- | frontend/components/prism/Sidebar.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/components/prism/Sidebar.tsx b/frontend/components/prism/Sidebar.tsx index 80e13f3..7f106d8 100644 --- a/frontend/components/prism/Sidebar.tsx +++ b/frontend/components/prism/Sidebar.tsx @@ -75,12 +75,12 @@ export function Sidebar({ return ( <div key={item.symbol} className={`psm-watch-row${active ? " active" : ""}`}> <button type="button" className="psm-watch-select" onClick={() => onSelectTicker(item.symbol)}> - <span className="psm-watch-main"> + <span className="psm-watch-cell psm-watch-main"> <span className="psm-watch-symbol">{item.symbol}</span> <span className="psm-watch-date">{watchlistSubtitle(item)}</span> </span> - <span className="psm-watch-price">{fmtCurrency(item.quote?.price)}</span> - <span className={`psm-watch-change ${deltaClass(item.quote?.change_pct)}`}>{fmtPct(item.quote?.change_pct, 2, true)}</span> + <span className="psm-watch-cell psm-watch-price">{fmtCurrency(item.quote?.price)}</span> + <span className={`psm-watch-cell psm-watch-change ${deltaClass(item.quote?.change_pct)}`}>{fmtPct(item.quote?.change_pct, 2, true)}</span> </button> <button type="button" |
