From b119ff68c38eafdb832bfa8a9016b22bdd90ddb0 Mon Sep 17 00:00:00 2001 From: Sahil Batra Date: Thu, 22 Jun 2023 20:33:14 +0530 Subject: [PATCH] stream_settings: Fix height of select elements. Previously, we used to have top and bottom paddings of 4px to the select elements but it was removed in a208da9c4d0 to make sure that text for the selected option is aligned properly. All other select elements have height set to 30px, but the select elements in stream settings page had height set to "fit-content" and so they looked ugly after removing the padding. This commit sets the height of select elements in stream settings to 30px. --- web/styles/subscriptions.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/styles/subscriptions.css b/web/styles/subscriptions.css index 73dd4d20f4..27d05dd231 100644 --- a/web/styles/subscriptions.css +++ b/web/styles/subscriptions.css @@ -1016,7 +1016,7 @@ div.settings-radio-input-parent { /* Match with select elements in settings page */ min-width: 325px; max-width: 100%; - height: fit-content; + height: 30px; } & select.stream_post_policy_setting {