mirror of https://github.com/zulip/zulip.git
settings: Fix responsiveness in change email,password dialogs.
Added a width for the Change Email and Password dialogs at sm_min (576px) and ml_min (425px) to make them more responsive on narrow screens. Fixes: #24339.
This commit is contained in:
parent
8747aa6fa1
commit
cefc191dd6
|
@ -1831,6 +1831,11 @@ $option_title_width: 180px;
|
|||
margin: auto;
|
||||
float: none;
|
||||
}
|
||||
|
||||
#change_password_modal,
|
||||
#change_email_modal {
|
||||
width: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (width < $ml_min) {
|
||||
|
@ -1850,6 +1855,11 @@ $option_title_width: 180px;
|
|||
.topic_date_muted {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#change_password_modal,
|
||||
#change_email_modal {
|
||||
width: 300px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (width < $mm_min) {
|
||||
|
|
Loading…
Reference in New Issue