Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions cmd/gomodel/docs/docs.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 57 additions & 0 deletions docs/openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions internal/admin/dashboard/static/css/dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -1029,6 +1029,16 @@ body.dashboard-modal-open {
justify-self: end;
}

/* Usage page: the Tokens/Costs toggle shares the sticky bar with the date
picker so both stay reachable while scrolling. */
.usage-sticky-controls {
display: flex;
align-items: center;
justify-content: flex-end;
flex-wrap: wrap;
gap: 12px;
}

/* Interval Picker */
.interval-picker {
display: inline-flex;
Expand Down Expand Up @@ -2999,6 +3009,27 @@ textarea:focus {
color: #fff;
}

/* Usage charts flow two per row; a section alone in its row (odd count,
or neighbors hidden by x-show) grows to fill the full width. */
.usage-charts-grid {
display: flex;
flex-wrap: wrap;
gap: 24px;
margin-bottom: 24px;
}

.usage-charts-grid .model-chart-section {
flex: 1 1 calc(50% - 24px);
min-width: 420px;
margin-bottom: 0;
}

@media (max-width: 520px) {
.usage-charts-grid .model-chart-section {
min-width: 0;
}
}

/* Usage by Model Chart Section */
.model-chart-section {
background: var(--bg-surface);
Expand Down
Loading