summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorszaimen <szaimen@e.mail.de>2021-07-30 09:47:26 +0200
committerGitHub <noreply@github.com>2021-07-30 09:47:26 +0200
commit3f0c526ab27e9e87a9d8b37ccc01bb606501323b (patch)
tree97e914775d5c6fc98aaf62bf7c46db079d62e56d
parent79ef8b4c4a673143e016456e08537b57e60821d2 (diff)
parentf50193a4c26d4ab9739b10f257099e878237bfe0 (diff)
Merge pull request #2382 from nextcloud/enh/2289/try-to-fix-contacts-on-mobile
fix mobile contacts list
-rw-r--r--src/components/ContactsList.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ContactsList.vue b/src/components/ContactsList.vue
index 61053a2b..b63e25bb 100644
--- a/src/components/ContactsList.vue
+++ b/src/components/ContactsList.vue
@@ -154,7 +154,7 @@ export default {
<style lang="scss" scoped>
// Make virtual scroller scrollable
.contacts-list {
- max-height: 100%;
+ max-height: calc(100vh - var(--header-height));
overflow: auto;
}
</style>