work flyer into imbolc page

This commit is contained in:
2026-01-07 08:55:08 -08:00
parent ace01baee4
commit 04033f948d
2 changed files with 27 additions and 6 deletions

View File

@ -159,3 +159,19 @@ main li:not(:last-child) {
.no-header {
border-radius: 1rem;
}
.two-col {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.two-col > * {
place-self: start center;
}
@media (max-width: 750px) {
.two-col {
grid-template-columns: 1fr;
}
}