From 9644697d2ed93378dd4e7abec8d900c6986aacb9 Mon Sep 17 00:00:00 2001 From: Wolfsblvt Date: Wed, 17 Jul 2024 19:51:48 +0200 Subject: [PATCH] Override/fix width for fa-fw menu_button elements --- public/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/style.css b/public/style.css index 89d716a56..02df98177 100644 --- a/public/style.css +++ b/public/style.css @@ -3331,6 +3331,11 @@ grammarly-extension { text-align: center; } +.menu_button.fa-fw { + /* Font Awesome icons that are a menu button and should be fixed width need a slight fix. 1.25em is their default, but we need to account for button spacing. */ + min-width: calc(1.25em + 12px); +} + .avatar_div .menu_button, .form_create_bottom_buttons_block .menu_button { padding: 5px;