fix off-by-one pixel errors in login field heights - fixes https://github.com/vector-im/riot-web/issues/3738

pull/3919/head
Matthew Hodgson 2017-05-15 02:32:25 +01:00
parent 582a34c937
commit fe61a7eefd
1 changed files with 7 additions and 2 deletions

View File

@ -184,7 +184,7 @@ limitations under the License.
}
.mx_Login_field_prefix {
height: 33px;
height: 34px;
padding: 0px 5px;
line-height: 33px;
@ -197,7 +197,7 @@ limitations under the License.
}
.mx_Login_field_suffix {
height: 33px;
height: 34px;
padding: 0px 5px;
line-height: 33px;
@ -211,11 +211,16 @@ limitations under the License.
}
.mx_Login_username {
height: 16px;
flex-shrink: 1;
min-width: 0px;
border-radius: 3px;
}
.mx_Login_phoneNumberField {
height: 16px;
}
.mx_Login_field_has_prefix {
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;