fix: 🐛 Scrolling Issue in Safari for Top and Bottom Bars

This commit is contained in:
Syuilo 2023-07-16 22:51:50 -07:00 committed by ThatOneCalculator
parent c660f66811
commit 00d1c034d5
No known key found for this signature in database
GPG key ID: 8703CACD01000000
2 changed files with 42 additions and 0 deletions

View file

@ -384,6 +384,27 @@ async function deleteProfile() {
}
</script>
<style>
html,
body {
width: 100%;
height: 100%;
overflow: clip;
position: fixed;
top: 0;
left: 0;
}
#calckey_app {
width: 100%;
height: 100%;
overflow: clip;
position: absolute;
top: 0;
left: 0;
}
</style>
<style lang="scss" scoped>
.menu-enter-active,
.menu-leave-active {

View file

@ -410,6 +410,27 @@ const wallpaper = localStorage.getItem("wallpaper") != null;
console.log(mainRouter.currentRoute.value.name);
</script>
<style>
html,
body {
width: 100%;
height: 100%;
overflow: clip;
position: fixed;
top: 0;
left: 0;
}
#calckey_app {
width: 100%;
height: 100%;
overflow: clip;
position: absolute;
top: 0;
left: 0;
}
</style>
<style lang="scss" scoped>
.widgetsDrawer-enter-active,
.widgetsDrawer-leave-active {