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 a208da9c4d 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.
This commit is contained in:
Sahil Batra
2023-06-22 20:33:14 +05:30
committed by Tim Abbott
parent f461f28feb
commit b119ff68c3

View File

@@ -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 {