Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreta <gretadoci@gmail.com>2022-06-16 12:24:53 +0300
committerGitHub <noreply@github.com>2022-06-16 12:24:53 +0300
commit871fd800071684de68aea9dde314b7b26500147a (patch)
tree791995779bf1a4199f47136744343ccf93564950
parentb0ad053b56ecd23e62dcd6b45957f85c125f84fe (diff)
parent5446c4dc6f3319c65a5b6df3170205d5b41f1221 (diff)
Merge pull request #6750 from nextcloud/fix/infite-scroling-mobile
Fix infinite scrolling on mobile
-rw-r--r--src/components/MailboxThread.vue5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/MailboxThread.vue b/src/components/MailboxThread.vue
index 0729c2d85..4c42fc0fd 100644
--- a/src/components/MailboxThread.vue
+++ b/src/components/MailboxThread.vue
@@ -4,6 +4,7 @@
<AppContentList
v-infinite-scroll="onScroll"
v-shortkey.once="shortkeys"
+ class="envelope-list"
infinite-scroll-immediate-check="false"
:show-details="showThread"
:infinite-scroll-disabled="false"
@@ -272,4 +273,8 @@ export default {
::v-deep .button-vue--vue-secondary {
box-shadow: none;
}
+.envelope-list {
+ max-height: calc(100vh - var(--header-height));
+ overflow-y: auto;
+}
</style>