Files
vuefilemanager/resources/js/components/Sidebar/ContentSidebar.vue
2022-02-16 16:57:57 +01:00

15 lines
328 B
Vue

<template>
<section
class="content-sidebar z-10 hidden w-52 flex-none select-none overflow-y-auto bg-light-background pt-6 dark:bg-dark-background lg:block xl:w-56"
id="content-sidebar"
>
<slot></slot>
</section>
</template>
<script>
export default {
name: 'ContentSidebar',
}
</script>