diff options
Diffstat (limited to 'web/style.css')
| -rw-r--r-- | web/style.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/web/style.css b/web/style.css index f4a9d91..b6f0484 100644 --- a/web/style.css +++ b/web/style.css @@ -2034,3 +2034,24 @@ dialog label select:focus { font-size: 0.85rem; padding: 6px 10px; } + +/* Budget headroom chips */ +.budget-bar { + display: flex; + flex-wrap: wrap; + gap: 6px; + align-items: center; +} +.budget-chip { + font-size: 0.72rem; + padding: 2px 8px; + border-radius: 999px; + background: var(--bg); + border: 1px solid var(--border); + color: var(--text-muted); + white-space: nowrap; +} +.budget-chip--low { + border-color: var(--state-budget-exceeded); + color: var(--state-budget-exceeded); +} |
