19462: Updating border thickness updatebutton
authorSarah Wait Zaranek <swz@curii.com>
Wed, 21 Dec 2022 16:28:24 +0000 (11:28 -0500)
committerSarah Wait Zaranek <swz@curii.com>
Wed, 21 Dec 2022 16:28:24 +0000 (11:28 -0500)
Arvados-DCO-1.1-Signed-off-by: Sarah Wait Zaranek <swz@curii.com>

src/store/processes/process.ts

index 43107fb138eee21fbe108c7d224c324bf82202ff..2a81669cc7ad55772b9695c4e20d77cfca130412 100644 (file)
@@ -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}`} : {}),
     };
 };