From 2457084db2743c51502774f6e5ca18b207e516d2 Mon Sep 17 00:00:00 2001 From: walster001 Date: Tue, 27 Aug 2024 19:31:13 +0930 Subject: [PATCH] Update padding values/display for Mobile Devices Have modified this in my test dev server, it appears this is the property that defines the spacing/containment of text for lists. When tested on iOS device this appears to work correctly. Last commit removing vertical align, and iinitial commit unsetting line height for ModernDark fixes an issue where text was super spaced out on ModernDark theme only. --- client/components/lists/list.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/components/lists/list.css b/client/components/lists/list.css index 18bd85cc2..2205af526 100644 --- a/client/components/lists/list.css +++ b/client/components/lists/list.css @@ -245,11 +245,11 @@ padding: 15px 19px; } .list-header { - padding: 0 12px 0px; + /*Updated padding values for mobile devices, this should fix text grouping issue*/ + padding: 20px 0px 20px 0px; border-bottom: 0px solid #e4e4e4; - height: 60px; + min-height: 30px; margin-top: 10px; - display: flex; align-items: center; } .list-header .list-header-left-icon {