fix off-by-one pixel errors in login field heights - fixes https://github.com/vector-im/riot-web/issues/3738
This commit is contained in:
parent
582a34c937
commit
fe61a7eefd
|
@ -184,7 +184,7 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_Login_field_prefix {
|
.mx_Login_field_prefix {
|
||||||
height: 33px;
|
height: 34px;
|
||||||
padding: 0px 5px;
|
padding: 0px 5px;
|
||||||
line-height: 33px;
|
line-height: 33px;
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_Login_field_suffix {
|
.mx_Login_field_suffix {
|
||||||
height: 33px;
|
height: 34px;
|
||||||
padding: 0px 5px;
|
padding: 0px 5px;
|
||||||
line-height: 33px;
|
line-height: 33px;
|
||||||
|
|
||||||
|
@ -211,11 +211,16 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_Login_username {
|
.mx_Login_username {
|
||||||
|
height: 16px;
|
||||||
flex-shrink: 1;
|
flex-shrink: 1;
|
||||||
min-width: 0px;
|
min-width: 0px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_Login_phoneNumberField {
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_Login_field_has_prefix {
|
.mx_Login_field_has_prefix {
|
||||||
border-top-left-radius: 0px;
|
border-top-left-radius: 0px;
|
||||||
border-bottom-left-radius: 0px;
|
border-bottom-left-radius: 0px;
|
||||||
|
|
Loading…
Reference in New Issue