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/addon-links.css
2024-04-16 08:49:08 -07:00

27 lines
No EOL
428 B
CSS

.addon-links {
display: grid;
gap: var(--sizing-sm);
grid-template-columns: repeat(1,minmax(0,1fr));
& div > h2 {
margin-top: 0;
}
& div:last-of-type h2 {
margin-top: var(--sizing-base);
}
&.link-list {
margin-bottom: 0;
}
}
@media screen and (min-width: 768px) {
.addon-links {
grid-template-columns: repeat(2,minmax(0,1fr));
& div:last-of-type h2 {
margin-top: 0;
}
}
}