Skip to content
Snippets Groups Projects
Commit 6dbdd322 authored by lambadalambda's avatar lambadalambda
Browse files

Merge branch 'feature/top_bar_scrolls_to_top' into 'develop'

Feature/top bar scrolls to top

See merge request !19
parents b5d7a179 7b6719b9
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,9 @@ export default {
methods: {
activatePanel (panelName) {
this.mobileActivePanel = panelName
},
scrollToTop () {
window.scrollTo(0, 0)
}
}
}
<template>
<div id="app" v-bind:style="style" class="base02-background">
<nav class='container base01-background base04'>
<nav class='container base01-background base04' @click="scrollToTop()">
<div class='inner-nav' :style="logoStyle">
<div class='item'>
<router-link :to="{ name: 'root'}">{{sitename}}</router-link>
......
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