We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fdd3c1 commit 3bcbcc1Copy full SHA for 3bcbcc1
src/components/base/Header.tsx
@@ -77,6 +77,7 @@ function Header(props: MainHeaderProps) {
77
</Right>
78
) : (
79
<Right>
80
+ {themeReady && <ThemeToggleButton />}
81
<SearchButton to={urlForSearch}>
82
<SearchIcon2 />
83
</SearchButton>
src/components/main/MainTemplate.tsx
@@ -4,7 +4,7 @@ import { themedPalette } from '../../lib/styles/themes';
4
5
const BackgroundStyle = createGlobalStyle`
6
body {
7
- background: ${themedPalette.bg_page1};
+ background: ${themedPalette.bg_page1}!important;
8
}
9
`;
10
0 commit comments