summaryrefslogtreecommitdiff
path: root/packages/frontend/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-06-09 12:55:27 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-06-09 12:55:27 +0900
commit3941c73db0b0d9e0a3c7d4a638f57cb291c09a9f (patch)
tree4934a503e39594dc7857f2a0c6e81fe877c92aa6 /packages/frontend/src
parentMerge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff)
downloadmisskey-3941c73db0b0d9e0a3c7d4a638f57cb291c09a9f.tar.gz
misskey-3941c73db0b0d9e0a3c7d4a638f57cb291c09a9f.tar.bz2
misskey-3941c73db0b0d9e0a3c7d4a638f57cb291c09a9f.zip
tweak of 6032c2be1
Diffstat (limited to 'packages/frontend/src')
-rw-r--r--packages/frontend/src/ui/deck.vue25
-rw-r--r--packages/frontend/src/ui/universal.vue25
2 files changed, 26 insertions, 24 deletions
diff --git a/packages/frontend/src/ui/deck.vue b/packages/frontend/src/ui/deck.vue
index 1b0f7ae9d4..bd5d5beb84 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 4f13040451..8abb20300f 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>