aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2016-12-02 14:33:03 +0100
committerRoger Braun <roger@rogerbraun.net>2016-12-02 14:33:03 +0100
commit187c4a7d57fa359abc954b4fa9c570635fa149fd (patch)
tree4ded312921ccd03fb36bb0a518360fbc700932cf /src/App.vue
parent6e608dd2dd5a9d28c384b7fb368e76c477685ffd (diff)
CSS fixes.
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/App.vue b/src/App.vue
index e46419e0..2cd6d079 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -6,14 +6,16 @@
</div>
</nav>
<div class="container" id="content">
- <sidebar>
+ <div class="sidebar">
<user-panel></user-panel>
<nav-panel></nav-panel>
<notifications v-if="currentUser"></notifications>
- </sidebar>
- <transition name="fade">
- <router-view></router-view>
- </transition>
+ </div>
+ <div class="main">
+ <transition name="fade">
+ <router-view></router-view>
+ </transition>
+ </div>
</div>
</div>
</template>