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:
Palash Baderia 2022-10-11 17:50:27 +05:30 committed by Tim Abbott
parent 8747aa6fa1
commit cefc191dd6
1 changed files with 10 additions and 0 deletions

View File

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