aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/pages')
-rw-r--r--webui/src/pages/bug/Bug.tsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/webui/src/pages/bug/Bug.tsx b/webui/src/pages/bug/Bug.tsx
index 8b537fb8..343721b4 100644
--- a/webui/src/pages/bug/Bug.tsx
+++ b/webui/src/pages/bug/Bug.tsx
@@ -76,10 +76,11 @@ const useStyles = makeStyles((theme) => ({
backButton: {
position: 'sticky',
top: '80px',
- backgroundColor: '#574142',
- color: '#fff',
+ backgroundColor: theme.palette.primary.dark,
+ color: theme.palette.primary.contrastText,
'&:hover': {
- backgroundColor: '#610B0B',
+ backgroundColor: theme.palette.primary.main,
+ color: theme.palette.primary.contrastText,
},
},
}));