fix(ux): fix checkbox sizing (#4172)

* fix(UX): scale and align checkboxes

* fix(UX): scale to default browser zoom

* fix(UX): use different browser scale properties

* fix(UX): css rule with fixed height/width
pull/4185/head
itsconquest 2020-08-10 18:21:03 +12:00 committed by GitHub
parent 8408484f8b
commit 59cc02137d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -75,6 +75,12 @@ input[type='checkbox'] {
vertical-align: middle;
}
.md-checkbox input[type='checkbox'] {
width: 16px;
height: 16px;
margin-top: -1px;
}
a[ng-click] {
cursor: pointer;
}