Skip to content

Commit

Permalink
add missing -ms-grid display property to support IE grid layouts (#1926)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmolnar99 authored and niklasvh committed Sep 22, 2019
1 parent 9a63797 commit ee3ca35
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/css/property-descriptors/display.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ const parseDisplayValue = (display: string): Display => {
case '-webkit-flex':
return DISPLAY.FLEX;
case 'grid':
case '-ms-grid':
return DISPLAY.GRID;
case 'ruby':
return DISPLAY.RUBY;
Expand Down

0 comments on commit ee3ca35

Please sign in to comment.