mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 00:22:15 +00:00
25 lines
572 B
Vue
25 lines
572 B
Vue
<template>
|
|
<section class="content-sidebar flex-none xl:w-56 w-52 lg:block hidden overflow-y-auto pt-6 select-none" id="content-sidebar">
|
|
<slot></slot>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ContentSidebar',
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '/resources/sass/vuefilemanager/_variables';
|
|
@import '/resources/sass/vuefilemanager/_mixins';
|
|
|
|
.content-sidebar {
|
|
background: rgb(249, 249, 250);
|
|
}
|
|
|
|
.dark .content-sidebar {
|
|
background: rgba($dark_mode_foreground, 0.2);
|
|
}
|
|
</style>
|