diff options
author | Sascha <GlancingMind@outlook.com> | 2021-02-26 16:26:37 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-03-04 20:53:28 +0100 |
commit | 30587cc03f0b1a8fe0c5621207882b9c6714093e (patch) | |
tree | 1eab7fcd6aec71a2231487a5cc7fcbbbc13cae5e /webui/src/pages | |
parent | c834c03b809f226801423d726c62608297cd6fc4 (diff) | |
download | git-bug-30587cc03f0b1a8fe0c5621207882b9c6714093e.tar.gz |
Fix color of open/close filter buttons in dark mode
Diffstat (limited to 'webui/src/pages')
-rw-r--r-- | webui/src/pages/list/Filter.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webui/src/pages/list/Filter.tsx b/webui/src/pages/list/Filter.tsx index 5c4a3d17..66702078 100644 --- a/webui/src/pages/list/Filter.tsx +++ b/webui/src/pages/list/Filter.tsx @@ -65,7 +65,7 @@ function stringify(params: Query): string { const useStyles = makeStyles((theme) => ({ element: { ...theme.typography.body2, - color: '#444', + color: theme.palette.text.secondary, padding: theme.spacing(0, 1), fontWeight: 400, textDecoration: 'none', @@ -75,7 +75,7 @@ const useStyles = makeStyles((theme) => ({ }, itemActive: { fontWeight: 600, - color: '#333', + color: theme.palette.text.primary, }, icon: { paddingRight: theme.spacing(0.5), |