PHP Classes

File: resources/js/components/ui/sidebar/SidebarInset.vue

Recommend this page to a friend!
  Packages of Niko Peikrishvili   Ticker   resources/js/components/ui/sidebar/SidebarInset.vue   Download  
File: resources/js/components/ui/sidebar/SidebarInset.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Ticker
Application to track and manage to do tasks
Author: By
Last change:
Date: 3 months ago
Size: 620 bytes
 

Contents

Class file image Download
<script setup lang="ts"> import type { HTMLAttributes } from "vue" import { cn } from "@/lib/utils" 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-2 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>