This commit is contained in:
Maciej Caderek
2022-04-11 22:46:30 +02:00
parent 9fa3285297
commit 7beecd3c72
17 changed files with 870 additions and 127 deletions

View File

@@ -15,7 +15,7 @@ const App: Component<{ handlers: Handlers; state: DeepReadonly<State> }> = (
props
) => {
return (
<>
<div classList={{ light: !state.siteConfig.darkMode }}>
<Header handlers={props.handlers} />
<div class="layout">
<Show when={state.layout === "triple"}>
@@ -42,7 +42,7 @@ const App: Component<{ handlers: Handlers; state: DeepReadonly<State> }> = (
></GameTabs>
</div>
</div>
</>
</div>
);
};