From ada73eb6e02ebca94a2e168c62881f61e8464fee Mon Sep 17 00:00:00 2001 From: Sayam Samal Date: Tue, 21 Nov 2023 16:56:19 +0530 Subject: [PATCH] gear_menu_popover: Fix padding of items in org info section. We currently don't have appropriate padding applied to the lists and links in the org info section of the gear menu popover. This becomes an issue when we have a long org name, org url or org version, as text starts touching the edges of the popover. This commit adds the missing padding to the items in the org info section of the gear menu popover. --- web/styles/popovers.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/styles/popovers.css b/web/styles/popovers.css index 577ddfd0a1..e0baee432d 100644 --- a/web/styles/popovers.css +++ b/web/styles/popovers.css @@ -1344,7 +1344,7 @@ ul { } .navbar-dropdown-menu-link { - padding: 2px 0; + padding: 2px 10px; flex-grow: 1; text-align: center; text-decoration: none; @@ -1369,6 +1369,7 @@ ul { .org-url { margin-bottom: 7px; + padding: 0 10px; } .org-name, @@ -1380,6 +1381,7 @@ ul { font-size: 17px; font-weight: 600; line-height: 22px; + padding: 0 10px; } .org-plan,