Skip to content
Snippets Groups Projects
Commit 6fad0133 authored by lain's avatar lain
Browse files

Add some cheap transition anymation.

parent c9604eec
No related branches found
No related tags found
No related merge requests found
......@@ -263,3 +263,10 @@ attention {
nav {
z-index: 1000;
}
.fade-enter-active, .fade-leave-active {
transition: opacity .2s
}
.fade-enter, .fade-leave-active {
opacity: 0
}
......@@ -11,7 +11,9 @@
<nav-panel></nav-panel>
<notifications v-if="currentUser"></notifications>
</sidebar>
<router-view></router-view>
<transition name="fade">
<router-view></router-view>
</transition>
</div>
</div>
</template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment