fix(contacts): Further increase list height to eliminate bottom whitespace

Changed height calculation:
- Desktop: calc(100vh - 300px) → calc(100vh - 240px)
- Mobile: calc(100vh - 340px) → calc(100vh - 280px)

This should eliminate the ~20% unused whitespace at the bottom
of the contact lists.
This commit is contained in:
MarekWo
2025-12-30 12:07:04 +01:00
parent ccff0cf465
commit 3fbc4b7e2e
+2 -2
View File
@@ -216,7 +216,7 @@
/* NEW: Full-screen lists for dedicated pages */
.contacts-list-fullscreen {
height: calc(100vh - 300px);
height: calc(100vh - 240px);
overflow-y: auto;
-webkit-overflow-scrolling: touch;
padding: 0;
@@ -332,7 +332,7 @@
}
.contacts-list-fullscreen {
height: calc(100vh - 340px);
height: calc(100vh - 280px);
}
.filter-sort-toolbar {