projects
/
arvados.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1968561
)
19462: Updating border thickness
author
Sarah Wait Zaranek <swz@curii.com>
Wed, 21 Dec 2022 16:28:24 +0000
(11:28 -0500)
committer
Sarah 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
patch
|
blob
|
history
diff --git
a/src/store/processes/process.ts
b/src/store/processes/process.ts
index 43107fb138eee21fbe108c7d224c324bf82202ff..2a81669cc7ad55772b9695c4e20d77cfca130412 100644
(file)
--- 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: `
1
px solid ${color}`} : {}),
+ ...(running ? {border: `
2
px solid ${color}`} : {}),
};
};