diff options
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" |
