mirror of
https://github.com/MarekWo/mc-webui.git
synced 2026-08-05 08:22:30 +02:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user