mirror of https://github.com/zulip/zulip.git
subscriptions: Fix broken UI for subscriber and member search.
Fix overlapping UI layout for stream subscribers search on screens smaller than 320px. Break the search field to a new row in the layout. Also fix the same issue in the group settings > members panel. Fixes #29368
This commit is contained in:
parent
545e912a75
commit
484ef17afc
|
@ -239,6 +239,14 @@ h4.user_group_setting_subsection_title {
|
|||
.search {
|
||||
max-width: 160px;
|
||||
}
|
||||
|
||||
@media (max-width: $ms_min) {
|
||||
float: none;
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
margin: 0 0 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.subscriber_list_add .form-inline,
|
||||
|
|
Loading…
Reference in New Issue