From 76a89fea4b1489083e1a3ac048b8cfdd79760411 Mon Sep 17 00:00:00 2001
From: Tan Le <tle@gitlab.com>
Date: Wed, 30 Aug 2023 00:42:15 +1000
Subject: [PATCH] Fix vertical alignment of emoji in cover status

Changelog: fixed
---
 app/views/users/show.html.haml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/views/users/show.html.haml b/app/views/users/show.html.haml
index e2ddbb902138a..a2f6b3da746f4 100644
--- a/app/views/users/show.html.haml
+++ b/app/views/users/show.html.haml
@@ -71,7 +71,7 @@
                   %p.gl-mb-4.gl-text-gray-500= s_("UserProfile|Pronounced as: %{pronunciation}") % { pronunciation: @user.pronunciation }
 
               - if @user.status&.customized?
-                .cover-status.gl-display-inline-flex.gl-align-items-center.gl-mb-3
+                .cover-status.gl-display-inline-flex.gl-align-items-baseline.gl-mb-3
                   = emoji_icon(@user.status.emoji, class: 'gl-mr-2')
                   = markdown_field(@user.status, :message)
               = render "users/profile_basic_info"
-- 
GitLab