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-03-05 12:00:08 -08:00

24 lines
No EOL
353 B
CSS

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