1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 05:45:22 +02:00

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
This commit is contained in:
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

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;
}