mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-03 15:43:45 +00:00
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.
This commit is contained in:
@@ -260,7 +260,7 @@ export const dict = {
|
||||
"go.graph.free": "Free",
|
||||
"go.graph.freePill": "Big Pickle and promotional",
|
||||
"go.graph.go": "Go",
|
||||
"go.graph.label": "Requests/5h",
|
||||
"go.graph.label": "Requests per 5 hour",
|
||||
"go.graph.usageLimits": "Usage limits",
|
||||
"go.graph.tick": "{{n}}x",
|
||||
"go.graph.aria": "Requests per 5h: {{free}} vs {{go}}",
|
||||
|
||||
@@ -453,6 +453,10 @@ body {
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
margin-left: -40px;
|
||||
|
||||
@media (max-width: 60rem) {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
[data-slot="ylabels"] {
|
||||
|
||||
Reference in New Issue
Block a user