From bc2394a4e3fface430a2524adb4c06af2de0cc80 Mon Sep 17 00:00:00 2001 From: Pratik Chanda Date: Sat, 11 Oct 2025 15:25:26 +0530 Subject: [PATCH] css: Convert rules to em values for stream/group list in user profile. This allows the spacing to scale with the font size setting. --- web/styles/popovers.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/styles/popovers.css b/web/styles/popovers.css index 03a8cd901e..2ac7f8af06 100644 --- a/web/styles/popovers.css +++ b/web/styles/popovers.css @@ -582,9 +582,9 @@ ul.popover-group-menu-member-list { .group-list-top-section, .stream-list-top-section { display: flex; - margin-top: 12px; + margin-top: 0.75em; align-items: center; - margin-bottom: 5px; + margin-bottom: 0.3125em; .group-search-container, .stream-search-container { @@ -599,7 +599,7 @@ ul.popover-group-menu-member-list { .stream-search { grid-column: search-input-start / clear-search-end; grid-row: search-input; - padding-right: 28px; + padding-right: 1.75em; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;