Merge branch 'master' into 2019/kw15/design_differences_post

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

View File

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