mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 02:01:43 +03:00
Fix backgroundcolor of toolbar for dark mode
This commit is contained in:
parent
30587cc03f
commit
b996779197
@ -3,7 +3,7 @@ import { LocationDescriptor } from 'history';
|
||||
import React from 'react';
|
||||
|
||||
import Toolbar from '@material-ui/core/Toolbar';
|
||||
import { makeStyles } from '@material-ui/core/styles';
|
||||
import { fade, makeStyles } from '@material-ui/core/styles';
|
||||
import CheckCircleOutline from '@material-ui/icons/CheckCircleOutline';
|
||||
import ErrorOutline from '@material-ui/icons/ErrorOutline';
|
||||
|
||||
@ -19,8 +19,8 @@ import { useBugCountQuery } from './FilterToolbar.generated';
|
||||
|
||||
const useStyles = makeStyles((theme) => ({
|
||||
toolbar: {
|
||||
backgroundColor: theme.palette.grey['100'],
|
||||
borderColor: theme.palette.grey['300'],
|
||||
backgroundColor: fade(theme.palette.text.hint, 0.05),
|
||||
borderColor: theme.palette.divider,
|
||||
borderWidth: '1px 0',
|
||||
borderStyle: 'solid',
|
||||
margin: theme.spacing(0, -1),
|
||||
|
Loading…
Reference in New Issue
Block a user