feat: Unifies article lists to have similar view styles.
All checks were successful
CI / release (push) Successful in 5m36s

This commit is contained in:
2025-04-15 11:49:33 -04:00
parent def75c1e41
commit 9159ecc834
4 changed files with 108 additions and 47 deletions

View File

@@ -24,7 +24,7 @@ func baseLayout(
body(class: "text-white text-lg font-avenir \(section.rawValue)") {
siteHeader(section)
div(class: "mb-auto\(section == .articles ? " mx-10" : "")") {
div(class: "mb-auto mx-10") {
children()
}
if section == .articles {
@@ -57,7 +57,7 @@ private func siteHeader(_ section: Section) -> Node {
}
}
}
div(class: "font-avenir w-full pt-4", id: "search") {}
div(class: "font-avenir w-full pt-4 px-8", id: "search") {}
}
}
}