feat: spruce up design

This commit is contained in:
Cory Dransfeldt 2024-04-28 19:06:48 -07:00
parent 2614dff452
commit 94e28067f9
No known key found for this signature in database
51 changed files with 480 additions and 202 deletions

View file

@ -0,0 +1,21 @@
.link-grid {
display: grid;
gap: var(--sizing-sm);
grid-template-columns: repeat(1,minmax(0,1fr));
margin-bottom: var(--sizing-base);
& .link {
border: 1px solid var(--gray-light);
padding: var(--sizing-xs) var(--sizing-sm) 0;
& button {
margin-right: var(--sizing-xs);
}
}
}
@media screen and (min-width: 768px) {
.link-grid {
grid-template-columns: repeat(2,minmax(0,1fr));
}
}