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
.c-card-list
Update .c-card-list to use auto-fill not auto-fit, so a solo card in a list does not stretch to fit container.
auto-fill
auto-fit
Noticed on Project #317 Origin Data 826.
In components/c-card-list.css:
components/c-card-list.css
.c-card-list { display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); - grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--global-space--bootstrap-gap); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Goal
Update
.c-card-list
to useauto-fill
notauto-fit
, so a solo card in a list does not stretch to fit container.Reference
Noticed on Project #317 Origin Data 826.
Expectation
In
components/c-card-list.css
:The text was updated successfully, but these errors were encountered: