I want to make some workaround for my current work that requires this to implement in order to get the right results on iOS 9.3 and its predecessors.
It requires this line of CSS to be fixed:
.wrapping-element {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
And i want to make it to JSS. My attempt is like this:
const styles = {
root: {
display: '-webkit-box',
display: '-moz-box',
display: '-ms-flexbox',
display: '-webkit-flex',
display: 'flex',
}
};
But it seems not the right way to do this. Because eslint make this an error because it has multiple key. And because it's an object, only the last key:value is applied. CMIIW