Skip to content

Commit

Permalink
Use different CSS comment style for IE11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
felixheidecke committed Aug 21, 2017
1 parent f807eea commit 5b4c46f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/css/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,9 @@
}

#header .header-appname-container {
display: -webkit-flex; // @TODO: Remove if Chrome 18 support is dropped
display: -moz-box; // @TODO: Remove if FF 14 support is dropped
display: -webkit-flex; /* @TODO: Remove if Chrome 18 support is dropped */
display: -ms-flexbox; /* @TODO: Remove if IE 11 support is dropped */
display: -moz-box; /* @TODO: Remove if FF 14 support is dropped */
display: flex;
position: absolute;
left: 15px;
Expand Down

0 comments on commit 5b4c46f

Please sign in to comment.