diff --git a/site/src/components/Resources/AgentRow.tsx b/site/src/components/Resources/AgentRow.tsx index 3a3363d907395..36358d7f921dd 100644 --- a/site/src/components/Resources/AgentRow.tsx +++ b/site/src/components/Resources/AgentRow.tsx @@ -318,10 +318,11 @@ export const AgentRow: FC = ({ ); @@ -329,9 +330,10 @@ export const AgentRow: FC = ({ icon = (
= ({ icon = (
({ height: nextChangesSource ? "50%" : "100%", - width: 4, - background: "hsl(222, 31%, 25%)", + width: 2, + background: theme.experimental.l1.outline, borderRadius: 2, - }} + })} /> {nextChangesSource && (
({ + height: 2, width: "50%", top: "calc(50% - 2px)", left: "calc(50% - 1px)", - background: "hsl(222, 31%, 25%)", + background: theme.experimental.l1.outline, borderRadius: 2, position: "absolute", - }} + })} /> )}
diff --git a/site/src/components/WorkspaceBuildLogs/Logs.tsx b/site/src/components/WorkspaceBuildLogs/Logs.tsx index 40c419b600dc8..cf4b7fa6348e8 100644 --- a/site/src/components/WorkspaceBuildLogs/Logs.tsx +++ b/site/src/components/WorkspaceBuildLogs/Logs.tsx @@ -121,7 +121,7 @@ const styles = { wordBreak: "break-all", display: "flex", alignItems: "center", - fontSize: 14, + fontSize: 13, color: theme.palette.text.primary, fontFamily: MONOSPACE_FONT_FAMILY, height: "auto", @@ -131,14 +131,29 @@ const styles = { "&.error": { backgroundColor: theme.experimental.roles.error.background, + color: theme.experimental.roles.error.text, + + "& .dashed-line": { + backgroundColor: theme.experimental.roles.error.outline, + }, }, "&.debug": { backgroundColor: theme.experimental.roles.info.background, + color: theme.experimental.roles.info.text, + + "& .dashed-line": { + backgroundColor: theme.experimental.roles.info.outline, + }, }, "&.warn": { backgroundColor: theme.experimental.roles.warning.background, + color: theme.experimental.roles.warning.text, + + "& .dashed-line": { + backgroundColor: theme.experimental.roles.warning.outline, + }, }, }), space: { @@ -153,8 +168,10 @@ const styles = { display: "inline-block", color: theme.palette.text.secondary, }), - number: { + number: (theme) => ({ width: 32, textAlign: "right", - }, + flexShrink: 0, + color: theme.palette.text.disabled, + }), } satisfies Record>;