Skip to content

Commit

Permalink
fix(ui5-checkbox): fix layouting in ie (#926)
Browse files Browse the repository at this point in the history
  • Loading branch information
fifoosid committed Nov 12, 2019
1 parent e8cff86 commit ffdc271
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/main/src/themes/CheckBox.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,15 @@
-webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* Fixes IE11 bug for flex + min-height
https://github.com/philipwalton/flexbugs/issues/231
*/
.ui5-checkbox-root::after {
content: "";
min-height: inherit;
font-size: 0;
}

.ui5-checkbox-root:focus::before {
content: "";
position: absolute;
Expand Down

0 comments on commit ffdc271

Please sign in to comment.