From d388ef0e9670736e48225f743cd01895af1e3874 Mon Sep 17 00:00:00 2001 From: Germain Date: Mon, 6 Jun 2022 10:14:38 +0100 Subject: [PATCH] Reduce gutter with the new read receipt UI (#8736) --- res/css/views/rooms/_EventTile.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/css/views/rooms/_EventTile.scss b/res/css/views/rooms/_EventTile.scss index 3f2a1fbf19..6a22bab6fb 100644 --- a/res/css/views/rooms/_EventTile.scss +++ b/res/css/views/rooms/_EventTile.scss @@ -419,12 +419,12 @@ $threadInfoLineHeight: calc(2 * $font-12px); // See: _commons.scss .mx_ThreadSummaryIcon, .mx_EventTile_line { /* ideally should be 100px, but 95px gives us a max thumbnail size of 800x600, which is nice */ - margin-right: 110px; + margin-right: 80px; min-height: $font-14px; } .mx_ThreadSummary { - max-width: min(calc(100% - $left-gutter - 110px), 600px); // leave space on both left & right gutters + max-width: min(calc(100% - $left-gutter - 80px), 600px); // leave space on both left & right gutters } }