mirror of
https://github.com/apotdevin/thunderhub.git
synced 2024-11-19 09:50:03 +01:00
fix: ๐ menu color
This commit is contained in:
parent
7b5014770f
commit
9de0c31316
@ -23,8 +23,8 @@ import {
|
||||
navBackgroundColor,
|
||||
navTextColor,
|
||||
subCardColor,
|
||||
cardBorderColor,
|
||||
mediaWidths,
|
||||
burgerRowColor,
|
||||
} from '../../styles/Themes';
|
||||
import { useConfigState } from '../../context/ConfigContext';
|
||||
import { Link } from '../../components/link/Link';
|
||||
@ -95,7 +95,7 @@ const BurgerRow = styled.div`
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
overflow: scroll;
|
||||
background: ${cardBorderColor};
|
||||
background: ${burgerRowColor};
|
||||
margin: 0 -16px;
|
||||
padding: 16px;
|
||||
`;
|
||||
|
@ -78,7 +78,13 @@ export const inverseTextColor = theme('mode', {
|
||||
export const burgerColor = theme('mode', {
|
||||
light: themeColors.white,
|
||||
dark: themeColors.blue6,
|
||||
night: themeColors.blue6,
|
||||
night: 'black',
|
||||
});
|
||||
|
||||
export const burgerRowColor = theme('mode', {
|
||||
light: themeColors.grey2,
|
||||
dark: themeColors.blue4,
|
||||
night: '#0a0a0a',
|
||||
});
|
||||
|
||||
export const linkHighlight = theme('mode', {
|
||||
|
Loadingโฆ
Reference in New Issue
Block a user