From 3941c73db0b0d9e0a3c7d4a638f57cb291c09a9f Mon Sep 17 00:00:00 2001
From: syuilo <Syuilotan@yahoo.co.jp>
Date: Fri, 9 Jun 2023 12:55:27 +0900
Subject: [PATCH] tweak of 6032c2be1

---
 packages/frontend/src/ui/deck.vue      | 25 +++++++++++++------------
 packages/frontend/src/ui/universal.vue | 25 +++++++++++++------------
 2 files changed, 26 insertions(+), 24 deletions(-)

diff --git a/packages/frontend/src/ui/deck.vue b/packages/frontend/src/ui/deck.vue
index 1b0f7ae9d..bd5d5beb8 100644
--- a/packages/frontend/src/ui/deck.vue
+++ b/packages/frontend/src/ui/deck.vue
@@ -257,21 +257,22 @@ async function deleteProfile() {
 <style>
 html,
 body {
-  width: 100%;
-  height: 100%;
-  overflow: clip;
-  position: fixed;
-  top: 0;
-  left: 0;
+	width: 100%;
+	height: 100%;
+	overflow: clip;
+	position: fixed;
+	top: 0;
+	left: 0;
+	overscroll-behavior: none;
 }
 
 #misskey_app {
-  width: 100%;
-  height: 100%;
-  overflow: clip;
-  position: absolute;
-  top: 0;
-  left: 0;
+	width: 100%;
+	height: 100%;
+	overflow: clip;
+	position: absolute;
+	top: 0;
+	left: 0;
 }
 </style>
 
diff --git a/packages/frontend/src/ui/universal.vue b/packages/frontend/src/ui/universal.vue
index 4f1304045..8abb20300 100644
--- a/packages/frontend/src/ui/universal.vue
+++ b/packages/frontend/src/ui/universal.vue
@@ -218,21 +218,22 @@ watch($$(navFooter), () => {
 <style>
 html,
 body {
-  width: 100%;
-  height: 100%;
-  overflow: clip;
-  position: fixed;
-  top: 0;
-  left: 0;
+	width: 100%;
+	height: 100%;
+	overflow: clip;
+	position: fixed;
+	top: 0;
+	left: 0;
+	overscroll-behavior: none;
 }
 
 #misskey_app {
-  width: 100%;
-  height: 100%;
-  overflow: clip;
-  position: absolute;
-  top: 0;
-  left: 0;
+	width: 100%;
+	height: 100%;
+	overflow: clip;
+	position: absolute;
+	top: 0;
+	left: 0;
 }
 </style>