Skip to content

Commit a35a991

Browse files
samejrmatt-aitken
authored andcommitted
Differentiated icon colors for the insights section
1 parent 424b734 commit a35a991

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

apps/webapp/app/components/navigation/SideMenu.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -485,8 +485,8 @@ export function SideMenu({
485485
<SideMenuItem
486486
name="Query"
487487
icon={TableCellsIcon}
488-
activeIconColor="text-purple-500"
489-
inactiveIconColor="text-purple-500"
488+
activeIconColor="text-query"
489+
inactiveIconColor="text-query"
490490
to={queryPath(organization, project, environment)}
491491
data-action="query"
492492
isCollapsed={isCollapsed}
@@ -1045,8 +1045,8 @@ function CreateDashboardDialog({ formAction }: { formAction: string }) {
10451045
const isLoading = navigation.formAction === formAction;
10461046

10471047
return (
1048-
<DialogContent>
1049-
<DialogHeader>Create Dashboard</DialogHeader>
1048+
<DialogContent className="sm:max-w-sm">
1049+
<DialogHeader>Create dashboard</DialogHeader>
10501050
<Form method="post" action={formAction} className="space-y-4 pt-3">
10511051
<InputGroup>
10521052
<Label>Title</Label>
@@ -1066,7 +1066,7 @@ function CreateDashboardDialog({ formAction }: { formAction: string }) {
10661066
}
10671067
cancelButton={
10681068
<DialogClose asChild>
1069-
<Button variant="tertiary/medium">Cancel</Button>
1069+
<Button variant="secondary/medium">Cancel</Button>
10701070
</DialogClose>
10711071
}
10721072
/>

apps/webapp/tailwind.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ const runs = colors.indigo[500];
159159
const batches = colors.pink[500];
160160
const schedules = colors.yellow[500];
161161
const queues = colors.purple[500];
162+
const query = colors.blue[500];
162163
const deployments = colors.green[500];
163164
const concurrency = colors.amber[500];
164165
const limits = colors.purple[500];
@@ -240,6 +241,7 @@ module.exports = {
240241
schedules,
241242
concurrency,
242243
queues,
244+
query,
243245
regions,
244246
limits,
245247
deployments,

0 commit comments

Comments
 (0)