Skip to content

Commit 2b2d1bf

Browse files
committed
Fix rubberband scrolling w/ different approach
1 parent 76055bb commit 2b2d1bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/App.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<main
3-
class="fixed inset-0 flex gap-px"
3+
class="flex h-dvh gap-px"
44
:class="[
55
view.isStandaloneDisplayMode
66
? 'pl-[env(safe-area-inset-left)] pr-[env(safe-area-inset-right)]'
@@ -39,6 +39,6 @@ watchEffect(() => {
3939

4040
<style lang="postcss">
4141
body {
42-
@apply touch-manipulation select-none bg-separator-color font-sans text-base text-primary-color antialiased selection:bg-selection-color selection:text-primary-selected-color;
42+
@apply touch-manipulation select-none overflow-hidden bg-separator-color font-sans text-base text-primary-color antialiased selection:bg-selection-color selection:text-primary-selected-color;
4343
}
4444
</style>

0 commit comments

Comments
 (0)