Is this a bug report?
yes
Did you try recovering your dependencies?
yes
Which terms did you search for in User Guide?
Environment
node -v: v9.3.0
npm -v: 5.6.0
yarn --version (if you use Yarn):
npm ls react-scripts (if you haven’t ejected): 1.1.0
Then, specify:
- Operating system: macOS 10.13.2
- Browser and version (if relevant): Google Chrome Canary 66
Steps to Reproduce
(Write your steps here:)
- write this in css:
flex: 1 1 0;, this mean flex-grow: 1; flex-shrink: 1; flex-basis: 0
- save and compile
Expected Behavior
the compiled css should be: flex: 1 1 0;
Actual Behavior
the compiled css is: flex: 1 1;
because flex: 1 1; mean flex-grow: 1; flex-shrink: 1; flex-basis: 0%; the problem is:
flex-basis: 0% not equal to flex-basis: 0, and so produce style bug
Is this a bug report?
yes
Did you try recovering your dependencies?
yes
Which terms did you search for in User Guide?
Environment
node -v: v9.3.0npm -v: 5.6.0yarn --version(if you use Yarn):npm ls react-scripts(if you haven’t ejected): 1.1.0Then, specify:
Steps to Reproduce
(Write your steps here:)
flex: 1 1 0;, this meanflex-grow: 1; flex-shrink: 1; flex-basis: 0Expected Behavior
the compiled css should be:
flex: 1 1 0;Actual Behavior
the compiled css is:
flex: 1 1;because
flex: 1 1;meanflex-grow: 1; flex-shrink: 1; flex-basis: 0%; the problem is:flex-basis: 0%not equal toflex-basis: 0, and so produce style bug