mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
34 lines
647 B
Vue
34 lines
647 B
Vue
<template>
|
|
<div>
|
|
<b-sidebar
|
|
id="sidebar-mobile"
|
|
sidebar-class="sidebar-radius"
|
|
width="220px"
|
|
:backdrop="true"
|
|
bg-variant="white"
|
|
no-header-close
|
|
>
|
|
<b-img src="img/svg/lines.png" />
|
|
<div class="py-2">
|
|
<sidebar @admin="$emit('admin')" @logout="$emit('logout')" :shadow="false" />
|
|
</div>
|
|
</b-sidebar>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import Sidebar from '@/components/Menu/Sidebar'
|
|
|
|
export default {
|
|
name: 'MobileSidebar',
|
|
components: {
|
|
Sidebar,
|
|
},
|
|
}
|
|
</script>
|
|
<style>
|
|
.sidebar-radius {
|
|
border-bottom-right-radius: 26px;
|
|
border-top-right-radius: 26px;
|
|
}
|
|
</style>
|