From 64f7423a30575cae6ef41bb8760fda33b025fd3c Mon Sep 17 00:00:00 2001 From: Sarah Wait Zaranek Date: Wed, 21 Dec 2022 11:28:24 -0500 Subject: [PATCH] 19462: Updating border thickness Arvados-DCO-1.1-Signed-off-by: Sarah Wait Zaranek --- src/store/processes/process.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/processes/process.ts b/src/store/processes/process.ts index 43107fb138..2a81669cc7 100644 --- a/src/store/processes/process.ts +++ b/src/store/processes/process.ts @@ -113,7 +113,7 @@ export const getProcessStatusStyles = (status: string, theme: ArvadosTheme): Rea // Set text color to status color when running, else use white text for solid button color: running ? color : theme.palette.common.white, // Set border color when running, else omit the style entirely - ...(running ? {border: `1px solid ${color}`} : {}), + ...(running ? {border: `2px solid ${color}`} : {}), }; }; -- 2.30.2