From 59cc02137d65217c3f2d46ea54fdec84aded9e47 Mon Sep 17 00:00:00 2001 From: itsconquest Date: Mon, 10 Aug 2020 18:21:03 +1200 Subject: [PATCH] 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 --- app/assets/css/app.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/assets/css/app.css b/app/assets/css/app.css index cdb30d4ac..0e77532d6 100644 --- a/app/assets/css/app.css +++ b/app/assets/css/app.css @@ -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; }