Dashboard Style
This commit is contained in:
@@ -8,6 +8,7 @@ import Header from "../components/Header.astro";
|
||||
import SidebarLeft from "../components/SidebarLeft.astro";
|
||||
import SidebarRight from "../components/SidebarRight.astro";
|
||||
import { NotificationWrapper } from "@ibcornelsen/ui";
|
||||
import HeaderAlternative from "#components/HeaderAlternative.svelte";
|
||||
|
||||
export interface Props {
|
||||
title: string;
|
||||
@@ -92,13 +93,15 @@ const schema = JSON.stringify({
|
||||
<body>
|
||||
<Header />
|
||||
<main
|
||||
class="grid gap-6 p-6 grid-cols-[2fr,6fr,2fr] max-w-[1920px] w-full"
|
||||
class="lg:grid gap-6 md:p-6 lg:grid-cols-[2fr,6fr,2fr] max-w-[1920px] w-full"
|
||||
>
|
||||
<SidebarLeft />
|
||||
<article>
|
||||
<article class="w-full max-w-full">
|
||||
<slot />
|
||||
</article>
|
||||
<SidebarRight />
|
||||
<div class="hidden lg:block">
|
||||
<SidebarRight />
|
||||
<div>
|
||||
</main>
|
||||
<Footer />
|
||||
<NotificationWrapper client:load />
|
||||
|
||||
Reference in New Issue
Block a user