diff options
| author | shpuld <shp@cock.li> | 2019-03-03 16:33:40 +0200 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2019-03-03 16:33:40 +0200 |
| commit | c7e180080afd0e255e439030df800f79d33ff5de (patch) | |
| tree | 5c165df9dcdaef7c7701631325868e06af716b73 /src/App.vue | |
| parent | 1d3b1ac934e5dacb05d227ddc1ab0cbd8e16e169 (diff) | |
more work with notifications drawer
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/App.vue b/src/App.vue index aad84804..d83d5dbe 100644 --- a/src/App.vue +++ b/src/App.vue @@ -25,11 +25,13 @@ </div> </nav> <div v-if="" class="container" id="content"> - <side-drawer ref="sideDrawer" :logout="logout"></side-drawer> - <div class="mobile-notifications" :class="{ 'closed': !notificationsOpen }"> - <notifications/> + <div v-if="isMobileLayout"> + <side-drawer ref="sideDrawer" :logout="logout"></side-drawer> + <div class="mobile-notifications" :class="{ 'closed': !notificationsOpen }"> + <notifications/> + </div> </div> - <div class="sidebar-flexer mobile-hidden"> + <div class="sidebar-flexer mobile-hidden" v-if="!isMobileLayout"> <div class="sidebar-bounds"> <div class="sidebar-scroller"> <div class="sidebar"> |
