diff options
| author | David Hill <[email protected]> | 2026-03-04 22:19:28 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-03-04 22:19:28 +0000 |
| commit | cd3a09c6a78579a177d71941220e8d4072f5a57c (patch) | |
| tree | 15568515465abb2636e52a13205a35e96ac8093b /packages/console/app/src/routes | |
| parent | f8685a4d532386b7c30112454a89fc5ab884e7d1 (diff) | |
| download | opencode-cd3a09c6a78579a177d71941220e8d4072f5a57c.tar.gz opencode-cd3a09c6a78579a177d71941220e8d4072f5a57c.zip | |
tui: clearer graph labels and responsive layout for usage visualization
Improve readability of the usage graph y-axis label by spelling out
'Requests per 5 hour' instead of the abbreviated 'Requests/5h'. Fix
layout on smaller screens by removing negative margin that was
causing the graph to overflow its container.
Diffstat (limited to 'packages/console/app/src/routes')
| -rw-r--r-- | packages/console/app/src/routes/go/index.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/console/app/src/routes/go/index.css b/packages/console/app/src/routes/go/index.css index 0ff04a225..f70bf981f 100644 --- a/packages/console/app/src/routes/go/index.css +++ b/packages/console/app/src/routes/go/index.css @@ -453,6 +453,10 @@ body { width: 100%; margin: 0 auto; margin-left: -40px; + + @media (max-width: 60rem) { + margin-left: 0; + } } [data-slot="ylabels"] { |
