mirror of https://github.com/zulip/zulip.git
settings: Fix eye icon misaligning with password input on small screen.
This commit is contained in:
parent
e72b42ec13
commit
629e6c701c
|
@ -1169,6 +1169,11 @@ input[type="checkbox"] {
|
||||||
.password-input-row {
|
.password-input-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
/* This helps us in making sure that the
|
||||||
|
password_visibility_toggle does not look
|
||||||
|
misaligned in small screens where that component
|
||||||
|
increases in height on small screens. */
|
||||||
|
max-height: 2em;
|
||||||
|
|
||||||
.modal_password_input {
|
.modal_password_input {
|
||||||
/* The usual width of input is 206px, but we reduce
|
/* The usual width of input is 206px, but we reduce
|
||||||
|
|
Loading…
Reference in New Issue