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
Cards are not mobile-friendly.
0.3.1
Currently looks like this:
Should not have flex in this mode.
No response
I fixed it via:
.garuda-card-product-showcase-header { @apply block md:flex !important; } .garuda-card-thumbnail-container { @apply mb-5 mr-0 md:mr-10 !important; }
Pure CSS:
.garuda-card-product-showcase-header { display: block; @media (min-width: 768px) { display: flex; } } .garuda-card-thumbnail-container { margin-bottom: 1.25rem; margin-right: 0px; @media (min-width: 768px) { margin-right: 2.5rem } }
Gives this result:
The text was updated successfully, but these errors were encountered:
fix(card): made card mobile friendly
568fcbc
fix #62
daf23fe
11b48b3
Successfully merging a pull request may close this issue.
Description:
Cards are not mobile-friendly.
Version
0.3.1
What happens?
Currently looks like this:
What is expected to happen?
Should not have flex in this mode.
Logs
No response
More information
I fixed it via:
Pure CSS:
Gives this result:
The text was updated successfully, but these errors were encountered: