Skip to content

Commit ffdc271

Browse files
authored
fix(ui5-checkbox): fix layouting in ie (#926)
1 parent e8cff86 commit ffdc271

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

packages/main/src/themes/CheckBox.css

+9
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,15 @@
8080
-webkit-tap-highlight-color: rgba(0,0,0,0);
8181
}
8282

83+
/* Fixes IE11 bug for flex + min-height
84+
https://github.com/philipwalton/flexbugs/issues/231
85+
*/
86+
.ui5-checkbox-root::after {
87+
content: "";
88+
min-height: inherit;
89+
font-size: 0;
90+
}
91+
8392
.ui5-checkbox-root:focus::before {
8493
content: "";
8594
position: absolute;

0 commit comments

Comments
 (0)