From f18fec5130e87752b067eb65d17feff16a1d51ab Mon Sep 17 00:00:00 2001 From: Luke Date: Sat, 31 Dec 2022 15:59:14 +0100 Subject: [PATCH] refactor(web/progress): use solid colour for progress bar background --- web/src/features/progress/Progressbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/features/progress/Progressbar.tsx b/web/src/features/progress/Progressbar.tsx index 36d9885..8df4cc5 100644 --- a/web/src/features/progress/Progressbar.tsx +++ b/web/src/features/progress/Progressbar.tsx @@ -14,7 +14,7 @@ const useStyles = createStyles((theme) => ({ width: 350, height: 45, borderRadius: theme.radius.xs, - backgroundColor: 'rgba(0, 0, 0, 0.5)', + backgroundColor: theme.colors.dark[5], }, wrapper: { width: '100%',