You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I have some css with a value like flex: 1 we are currently outputting flex: 1 1.
This isn't picked up by ie11, as it needs three values for flex in order to render properly (it basically doesn't treat this flex value at all, so messes up the styles).
Would it be possible (perhaps even preferable) to output flex as a combo of flex-grow, flex-shrink and flex-basis?
So we would have -
flex: 1;
=>
flex-grow: 1;
flex: 1 1;
=>
flex-grow: 1;
flex-shrink: 1;
etc...
This would solve the safari 0% issue and would also make this compatible with ie11.
I'm up for putting in a pull request for this, but wanted to check whether you think it's worthwhile before I get started...
Let me know what you think.
The text was updated successfully, but these errors were encountered:
Hi,
If I have some css with a value like
flex: 1
we are currently outputtingflex: 1 1
.This isn't picked up by ie11, as it needs three values for flex in order to render properly (it basically doesn't treat this
flex
value at all, so messes up the styles).Would it be possible (perhaps even preferable) to output
flex
as a combo offlex-grow
,flex-shrink
andflex-basis
?So we would have -
=>
=>
etc...
This would solve the safari 0% issue and would also make this compatible with ie11.
I'm up for putting in a pull request for this, but wanted to check whether you think it's worthwhile before I get started...
Let me know what you think.
The text was updated successfully, but these errors were encountered: