This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/assets/styles/components/badge-grid.css
2024-04-15 13:22:07 -07:00

20 lines
No EOL
330 B
CSS

.badge-grid {
display: grid;
gap: var(--sizing-md);
grid-template-columns: repeat(3,minmax(0,1fr));
& > * {
display: flex;
justify-content: center;
}
img {
image-rendering: pixelated;
}
}
@media screen and (min-width: 768px) {
.badge-grid {
grid-template-columns: repeat(4,minmax(0,1fr));
}
}