You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
700 B
Vue
23 lines
700 B
Vue
<script setup lang="ts">
|
|
import { cn } from '@/lib/utils';
|
|
import type { HTMLAttributes } from 'vue';
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes['class'];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<main
|
|
:class="
|
|
cn(
|
|
'relative flex min-h-svh flex-1 flex-col bg-background',
|
|
'peer-data-[variant=inset]:min-h-[calc(100svh-theme(spacing.4))] md:peer-data-[variant=inset]:m-2 md:peer-data-[state=collapsed]:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow',
|
|
props.class,
|
|
)
|
|
"
|
|
>
|
|
<slot />
|
|
</main>
|
|
</template>
|