fix: 🐛 Possibly fix #82

#82
This commit is contained in:
Kenny 2022-03-25 08:07:35 -04:00
parent f1908180c8
commit 82459841ca
1 changed files with 6 additions and 2 deletions

View File

@ -25,7 +25,7 @@
>
<!-- element above removes artifacting from things like v-ripple by -->
<!-- scrollbox below must be a standalone div -->
<div class="scroll-y" ref="pgscroll" style="height: 100%">
<div ref="pgscroll" class="scroll-y" style="height: 100%">
<nuxt v-show="!search" />
</div>
</div>
@ -101,7 +101,7 @@ export default {
// Exit fullscreen if currently in fullscreen
this.$vuetube.statusBar.show();
this.$vuetube.navigationBar.show();
}
},
},
beforeCreate() {
@ -165,6 +165,10 @@ export default {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
*:focus::before {
opacity: 0 !important;
}
.scroll-y {
overflow-y: scroll !important; /* has to be scroll, not auto */
-webkit-overflow-scrolling: touch !important;