diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 653b58882c..337e40a211 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -72,13 +72,6 @@ export default { @import 'src/scss/global'; @import '~@mdi/font/css/materialdesignicons.css'; -.v-btn.ec-drawer-open, -.v-btn.ec-drawer-collapse { - position: absolute; - right: 0; - bottom: 0; -} - @media #{map-get($display-breakpoints, 'xs-only')} { html, body, diff --git a/frontend/src/components/navigation/SideBar.vue b/frontend/src/components/navigation/SideBar.vue index f218d68465..76fabace94 100644 --- a/frontend/src/components/navigation/SideBar.vue +++ b/frontend/src/components/navigation/SideBar.vue @@ -11,48 +11,21 @@ :width="$vuetify.breakpoint.xl || (!mini && !$vuetify.breakpoint.mdAndUp) ? 350 : 256" :color="!title || mini ? 'blue-grey lighten-4' : null" > - - + + + {{ icon }} + + + + {{ title }} + + + mdi-chevron-left + + + + + @@ -60,7 +33,7 @@ export default { name: 'SideBar', props: { - title: { type: String, default: null }, + title: { type: String, required: true }, icon: { type: String, default: 'mdi-format-list-bulleted-type' }, }, data() { diff --git a/frontend/src/views/activity/SideBarProgram.vue b/frontend/src/views/activity/SideBarProgram.vue index db8b12149f..14c0b651df 100644 --- a/frontend/src/views/activity/SideBarProgram.vue +++ b/frontend/src/views/activity/SideBarProgram.vue @@ -1,38 +1,35 @@