From 3fbc4b7e2e9c9410cef493a5b6bcfb1f22951750 Mon Sep 17 00:00:00 2001 From: MarekWo Date: Tue, 30 Dec 2025 12:07:04 +0100 Subject: [PATCH] fix(contacts): Further increase list height to eliminate bottom whitespace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- app/templates/contacts_base.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/contacts_base.html b/app/templates/contacts_base.html index fe7ed6a..1e1561d 100644 --- a/app/templates/contacts_base.html +++ b/app/templates/contacts_base.html @@ -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 {