Clan-app: adapt overall appearance & layout

This commit is contained in:
Johannes Kirschbauer
2024-08-13 21:08:02 +02:00
parent 57b598cbab
commit 7aa279a4fd
6 changed files with 48 additions and 15 deletions

View File

@@ -10,7 +10,7 @@ interface LayoutProps {
export const Layout: Component<LayoutProps> = (props) => {
return (
<>
<div class="drawer bg-base-100 lg:drawer-open">
<div class="drawer lg:drawer-open ">
<input
id="toplevel-drawer"
type="checkbox"
@@ -23,7 +23,7 @@ export const Layout: Component<LayoutProps> = (props) => {
{props.children}
</div>
<div
class="drawer-side z-40"
class="drawer-side z-40 h-full"
classList={{
"!hidden": route() === "welcome" || clanList().length === 0,
}}