summaryrefslogtreecommitdiffstats
path: root/src/components/ContactsList.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ContactsList.vue')
-rw-r--r--src/components/ContactsList.vue8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/ContactsList.vue b/src/components/ContactsList.vue
index 5a7e5e0c..76d31d91 100644
--- a/src/components/ContactsList.vue
+++ b/src/components/ContactsList.vue
@@ -21,7 +21,7 @@
-->
<template>
- <AppContentList>
+ <AppContentList class="content-list">
<div class="contacts-list__header">
<div class="search-contacts-field">
<input v-model="query" type="text" :placeholder="t('contacts', 'Search contacts …')">
@@ -181,4 +181,10 @@ export default {
width: 100%;
}
}
+
+.content-list {
+ overflow-y: auto;
+ padding: 0 4px;
+}
+
</style>