Skip to content

Commit f05bb1b

Browse files
committed
misc styling updates
1 parent 0ad93b4 commit f05bb1b

4 files changed

Lines changed: 23 additions & 22 deletions

File tree

desktop/src/components/Viewer/Executable/Executable.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import {
1818
IconExternalLink,
1919
IconEye,
2020
IconFile,
21+
IconLabel,
2122
IconPlayerPlay,
2223
IconTag,
2324
IconTerminal,
@@ -295,7 +296,7 @@ export default function ExecutableInfo({ executable }: ExecutableInfoProps) {
295296
<Stack gap="sm">
296297
<Title order={4}>
297298
<Group gap="xs">
298-
<IconTag size={16} />
299+
<IconLabel size={16} />
299300
Aliases
300301
</Group>
301302
</Title>
@@ -339,7 +340,7 @@ export default function ExecutableInfo({ executable }: ExecutableInfoProps) {
339340
<Drawer
340341
opened={true}
341342
onClose={() => setOutput([])}
342-
title="Execution Output"
343+
title={<Text size="sm">Execution Output</Text>}
343344
size="33%"
344345
position="bottom"
345346
>

desktop/src/components/Viewer/Settings/Settings.module.css

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
}
66

77
.settings__section {
8-
background-color: var(--mantine-color-other-backgroundColors-card);
8+
background-color: var(--mantine-color-other-backgroundColors-main);
9+
padding: 0;
910
}
1011

1112
.settings :global(.mantine-Select-input) {
@@ -36,19 +37,15 @@
3637
background-color: var(--mantine-color-other-backgroundColors-main);
3738
}
3839

39-
.settings :global(.mantine-Button-root) {
40-
background-color: var(--mantine-color-primary-0);
41-
color: var(--mantine-color-other-colors-bodyLight);
42-
}
43-
44-
.settings :global(.mantine-Button-root:hover) {
45-
background-color: var(--mantine-color-primary-1);
46-
}
47-
4840
.settings :global(.mantine-Title-root) {
49-
color: var(--mantine-color-other-colors-body);
41+
color: var(--mantine-color-primary-1);
5042
}
5143

5244
.settings :global(.mantine-Text-root) {
53-
color: var(--mantine-color-other-colors-body);
45+
color: var(--mantine-color-secondary-1);
46+
}
47+
48+
.settings :global(.mantine-TextInput-label),
49+
.settings :global(.mantine-Select-label) {
50+
color: var(--mantine-color-tertiary-1);
5451
}

desktop/src/components/Viewer/Settings/Settings.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ export function Settings() {
1717

1818
return (
1919
<div className={styles.settings}>
20-
<Title order={2} mb="xl">
20+
<Title order={2} mb="md">
2121
Settings
2222
</Title>
2323

24-
<Stack gap="md">
24+
<Stack gap="sm">
2525
<Card className={styles.settings__section}>
2626
<Text size="lg" fw={500} mb="md">
2727
Appearance

desktop/src/components/Viewer/Workspace/Workspace.tsx

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {
99
Text,
1010
ThemeIcon,
1111
Title,
12+
Tooltip,
1213
} from "@mantine/core";
1314
import {
1415
IconExternalLink,
@@ -62,12 +63,14 @@ export function Workspace({ workspace }: WorkspaceProps) {
6263
</Group>
6364

6465
{workspace.name && (
65-
<Badge variant="light" color="gray">
66-
<Group gap={4}>
67-
<IconInfoCircle size={12} />
68-
{workspace.name}
69-
</Group>
70-
</Badge>
66+
<Tooltip label={`Registered at ${workspace.path}`}>
67+
<Badge variant="light" color="gray">
68+
<Group gap={4}>
69+
<IconInfoCircle size={12} />
70+
{workspace.name}
71+
</Group>
72+
</Badge>
73+
</Tooltip>
7174
)}
7275
</Stack>
7376

0 commit comments

Comments
 (0)