hover nav on mobile

This commit is contained in:
2019-08-10 18:56:45 +02:00
parent 2051fb6120
commit 2f0adeda48
2 changed files with 14 additions and 1 deletions

View File

@@ -63,8 +63,19 @@ export default {
}
}
</script>
<style scoped>
<style scoped lang="scss">
@import "@/style/_variables.scss";
.nav-title {
font-weight: bold;
}
@media screen and (max-width: $navbar-breakpoint) {
.navbar {
position: relative
}
.navbar-menu {
position: absolute;
left: 0;
right: 0;
}
}
</style>