Prompt: simplify and fix dashboard layout. Sidebars are now a mess, weird gaps everywhere, make it simple and modern keeping general color scheme Stats: Context: 41,492 tokens Time: 6m 15s
21 lines
369 B
Vue
21 lines
369 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from "vue"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<main
|
|
data-slot="sidebar-inset"
|
|
:class="cn(
|
|
'bg-background relative flex w-full flex-1 flex-col',
|
|
props.class,
|
|
)"
|
|
>
|
|
<slot />
|
|
</main>
|
|
</template>
|