enhanced print view

This commit is contained in:
2022-09-17 20:02:58 +02:00
parent 3c010efb59
commit 63d010d04a
28 changed files with 2169 additions and 1979 deletions

View File

@@ -23,7 +23,7 @@ export const ThemeSwitcher: FunctionComponent<Props> = ({ showLabel }) => {
}
return (
<>
<span className="hideInPrintView">
{showLabel && "Switch color mode:"}
{showLabel && <br />}
<Toggle
@@ -34,6 +34,6 @@ export const ThemeSwitcher: FunctionComponent<Props> = ({ showLabel }) => {
}}
onChange={toggleTheme}
/>
</>
</span>
);
};