Skip to content
Snippets Groups Projects
Commit 0bdb71a4 authored by Petr Kalashnikov's avatar Petr Kalashnikov
Browse files

Fix images in footers

parent 421af353
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,13 @@
</header>
<router-view></router-view>
<footer>
<div>
<div v-if="!on_mobile_screen">
<img id="srlogo" src="./assets/Sprakradet_logo_neg.png" alt="">
</div>
<div v-if="!on_mobile_screen">
<img id="uiblogo" src="./assets/uib-logo.svg" alt="">
</div>
<div v-if="on_mobile_screen">
<img id="srlogo" src="./assets/Sprakradet_logo_neg.png" alt="">
<img id="uiblogo" src="./assets/uib-logo.svg" alt="">
</div>
......@@ -26,6 +32,12 @@
},
mounted: function(){
document.title = 'Ordbøkene - ' + this.version_label
},
computed: {
on_mobile_screen: function() {
if (this.$vuetify.breakpoint.xs || this.$vuetify.breakpoint.sm){return true}
else{return false}
}
}
}
</script>
......
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