We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In https://www.cirrus-ui.com/utils/flexbox#flex-grow there are two examples. The 2nd example code for u-flex-grow-0 seems to be incorrect.
u-flex-grow-0
What's in the doc does not produced on picture shows on the pink example:
<div class="u-flex u-gap-2 u-round-xs bg-blue-100 p-3 text-white font-bold u-text-center"> <div class="u-round-xs u-shadow-lg bg-blue-300 p-2">0</div> <div class="u-round-xs u-shadow-lg bg-blue-500 p-2 u-flex-shrink-1 w-100p">1</div> <div class="u-round-xs u-shadow-lg bg-blue-300 p-2">0</div> </div>
Perhaps it should be this instead:
<div class="u-flex u-gap-2 u-round-xs bg-pink-100 p-3 text-white font-bold u-text-center"> <div class="u-round-xs u-shadow-lg bg-pink-300 p-2 u-flex-grow-1">0</div> <div class="u-round-xs u-shadow-lg bg-pink-500 p-2 u-flex-grow-0">1</div> <div class="u-round-xs u-shadow-lg bg-pink-300 p-2 u-flex-grow-1">0</div> </div>
The text was updated successfully, but these errors were encountered:
Good catch, look like there are some incorrect code examples there. I will update those accordingly.
Sorry, something went wrong.
🐛 fix(frames.scss): Hide overflow for frame component #195
7fd9209
🔧 chore(flexbox): Fix code examples in flexbox docs #195
b152fe5
This has been fixed.
No branches or pull requests
In https://www.cirrus-ui.com/utils/flexbox#flex-grow there are two examples. The 2nd example code for
u-flex-grow-0
seems to be incorrect.What's in the doc does not produced on picture shows on the pink example:
Perhaps it should be this instead:
The text was updated successfully, but these errors were encountered: