``` //some other code... //prefix styles from props prefix({ flex: flex, flexFlow: flow, alignItems: alignItems, display: container ? "flex" : "block", justifyContent: justifyContent }) ``` Inline CSS result when using prefixer in Firefox 57.0.3: `display: flex` Inline CSS result when **not using** prefixer in Firefox 57.0.3: ``` display: flex flex: 1 1 0%; flex-flow: column nowrap; align-items: center; justify-content: flex-start; ``` A bunch of flex rules are missing 😢 I don't know if this issue goes past flex properties. Didn't have time to test that. Busy week.
Inline CSS result when using prefixer in Firefox 57.0.3:
display: flexInline CSS result when not using prefixer in Firefox 57.0.3:
A bunch of flex rules are missing 😢 I don't know if this issue goes past flex properties. Didn't have time to test that. Busy week.