Two fixes here:
-
First, IE11 doesn't do 3d transforms, so we need the fallback. Luckily,
@supports
is dope as hell. -
Second, IE11 has a weird bug with
flex: 1 0 auto
andmin-width
on flex items in a variable width parent container. The fix? Usewidth
instead. See https://github.com/philipwalton/flexbugs/issues/128 for details.
Fixes #22882 (closed)