On the front-end, checkboxes with labels would look squished when the labels wrapped
on a second line. That was due to the flex container taking too much space for the label
as the checkbox minimum dimensions was set in `px` rather than `em`, making it work
differently depending on the relative font size.
This commit is contained in:
M. L. Giannotta 2021-11-25 15:31:47 +01:00 committed by GitHub
parent 6e079b9a4b
commit 57fcb28720
1 changed files with 3 additions and 3 deletions

View File

@ -17,9 +17,9 @@
height: em(24px);
width: em(24px);
margin: 0;
margin-right: $gap;
min-height: 24px;
min-width: 24px;
margin-right: $gap;
min-height: em(24px);
min-width: em(24px);
overflow: hidden;
position: static;
vertical-align: middle;