Skip to content

Commit

Permalink
Update colors and column order
Browse files Browse the repository at this point in the history
  • Loading branch information
juberti committed Apr 22, 2024
1 parent 7302134 commit 8f14a83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions website/src/components/DataGrid.astro
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Astro.response.headers.set('Cache-Control', 'no-cache');

.ag-theme-quartz-dark {
font-family: monospace;
--ag-background-color: rgb(30 41 59);
--ag-header-background-color: rgb(55 65 81);
--ag-odd-row-background-color: rgb(55 65 81);
--ag-background-color: #292524
--ag-header-background-color: #44403c
--ag-odd-row-background-color: #44403c
--good-color: rgb(22 101 52);
--bad-color: rgb(101 22 22);
}
Expand Down
2 changes: 1 addition & 1 deletion website/src/utils/DataGridDefinitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,5 +126,5 @@ export const gridOptionsBase = {
domLayout: 'autoHeight',
rowData: [],
// Columns to be displayed (Should match rowData properties)...omit columnRegion, columnTTR, columnNumTokens
columnDefs: [ columnModel, columnProvider, columnTTFT, columnTPS, columnTotalTime]
columnDefs: [ columnProvider, columnModel, columnTTFT, columnTPS, columnTotalTime]
};

0 comments on commit 8f14a83

Please sign in to comment.