Skip to content
Merged
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
fix(site): HealthPage/WorkspaceProxyPage: adjust border colour for un…
…healthy regions
  • Loading branch information
johnstcn committed Jan 9, 2024
commit 430bc39b6eb0e02ca2b1a516ef715980fda03dc0
6 changes: 5 additions & 1 deletion site/src/pages/HealthPage/WorkspaceProxyPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ export const WorkspaceProxyPage = () => {
key={region.id}
css={{
borderRadius: 8,
border: `1px solid ${theme.palette.divider}`,
border: `1px solid ${
region.healthy
? theme.palette.divider
: theme.palette.warning.light
}`,
fontSize: 14,
}}
>
Expand Down