add missing -ms-grid display property to support IE grid layouts (#1926)

This commit is contained in:
MoyuScript 2019-09-22 04:32:42 +02:00
parent ee44089287
commit 295c9e5df8

View File

@ -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;