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 aee1ec0 commit d9c63c0Copy full SHA for d9c63c0
src/components/Viewer/style.css
@@ -37,6 +37,6 @@
37
background-color: #2C2F38;
38
}
39
40
-.dark-theme .overlay-content {
+.dark-theme .overlay-content.active {
41
color: #8b91ff;
42
src/style/themeRoot.tsx
@@ -18,7 +18,9 @@ export function ThemeRoot({ children }: { children: React.ReactNode }) {
18
19
return (
20
<ConfigProvider theme={isDark ? darkTheme : lightTheme}>
21
- {children}
+ <div className={isDark ? "dark-theme" : "light-theme"}>
22
+ {children}
23
+ </div>
24
</ConfigProvider>
25
);
26
0 commit comments