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
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
The text was updated successfully, but these errors were encountered:
sam019
changed the title
css compile error
flex attribute compile error
Feb 5, 2018
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: 0
Expected 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 bugThe text was updated successfully, but these errors were encountered: