Merge branch 'master' into dependabot/npm_and_yarn/webapp/nodemon-1.18.11

This commit is contained in:
Robert Schäfer 2019-04-09 22:12:56 +02:00 committed by GitHub
commit 98e7d28457
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,10 @@
</transition>
</ds-flex-item>
<ds-flex-item :width="{ base: '200px' }">
<ds-menu :routes="routes" />
<ds-menu
:routes="routes"
class="post-side-navigation"
/>
</ds-flex-item>
</ds-flex>
</div>
@ -79,3 +82,11 @@ export default {
}
}
</script>
<style lang="scss">
.post-side-navigation {
position: sticky;
top: 65px;
z-index: 2;
}
</style>