From 01793b0de3f55f68cb367d02da5b340fbaae2c47 Mon Sep 17 00:00:00 2001 From: Shubham Padia Date: Mon, 6 Jan 2025 07:12:33 +0000 Subject: [PATCH] subscriptions: Set width for fa-pencil icon to align with others. This icon is narrower in width, we have to explicitly set it's width to 1em so that it vertically aligns with other buttons near it. --- web/styles/subscriptions.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/styles/subscriptions.css b/web/styles/subscriptions.css index 70c93f0fd6..c50f74d613 100644 --- a/web/styles/subscriptions.css +++ b/web/styles/subscriptions.css @@ -951,6 +951,13 @@ h4.user_group_setting_subsection_title { .button-group { margin-left: auto; + /* This icon is narrower in width, we have to explicitly + set it's width to 1em so that it vertically aligns with + other buttons near it. */ + .fa-pencil { + width: 1em; + } + .deactivate { margin-right: 3px; text-decoration: none;