From 138b02448ba8e60fa37335af694715eec172ec7c Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Thu, 9 Jan 2025 17:26:45 +1100 Subject: [PATCH] FIX: Improve the user badge alignment on mobile devices. (#30665) Due to more explicit CSS flex arrangement on mobile devices, user badges were being shoved out of alignment. This change nudges them back into line. --- app/assets/stylesheets/mobile/topic-post.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/assets/stylesheets/mobile/topic-post.scss b/app/assets/stylesheets/mobile/topic-post.scss index a046d2a41e8..424924322b2 100644 --- a/app/assets/stylesheets/mobile/topic-post.scss +++ b/app/assets/stylesheets/mobile/topic-post.scss @@ -361,6 +361,14 @@ span.highlighted { order: 4; flex-basis: 100%; } + + .user-badge-buttons { + order: 5; + .user-badge { + padding-top: 0; + } + } + span { margin-right: 0.26em; }