Skip to content

Commit

Permalink
Fix toolbars positionning in IE11
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowriad committed Oct 14, 2019
1 parent 401ed23 commit 5e7c4c5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/components/src/toolbar/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@
margin: 0;
border: $border-width solid $light-gray-500;
background-color: $white;
display: flex;

// Required for IE11.
display: inline-flex;

// IE11 doesn't read rules inside this query. They are applied only to modern browsers.
@supports (position: sticky) {
display: flex;
}

flex-shrink: 0;
}

Expand Down

0 comments on commit 5e7c4c5

Please sign in to comment.