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
{{ message }}
This repository was archived by the owner on Jan 6, 2025. It is now read-only.
CSS doesn't require units if the value is 0. fxFlex="1 1 0px"(with units) works correctly and sets flex-basis to 0px. However, fxFlex="1 1 0"(without units) erroneously sets it to 100%. flex: 1 1 0; is valid CSS.
Some talk in #277 suggested it might be related to flexbug#4. If someone sets fxFlex="1 1 0" (without units), this API should set flex to 1 1 0px (with units) to satisfy flexbug#4.