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

This commit is contained in:
David Molnar 2019-09-22 04:32:42 +02:00 committed by Niklas von Hertzen
parent 9a63797aa7
commit ee3ca35636

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;