fix: styles + templating + config

This commit is contained in:
Cory Dransfeldt 2024-01-26 17:05:57 -08:00
parent 7d98dc7343
commit 9093a222d6
No known key found for this signature in database
3 changed files with 9 additions and 2 deletions

View file

@ -46,6 +46,8 @@ export default async function (eleventyConfig) {
// quiet build output // quiet build output
eleventyConfig.setQuietMode(true) eleventyConfig.setQuietMode(true)
// template options
eleventyConfig.setLiquidOptions({ eleventyConfig.setLiquidOptions({
jsTruthy: true, jsTruthy: true,
}) })

View file

@ -179,6 +179,11 @@ nav ul {
list-style: none; list-style: none;
} }
nav ul li {
margin-top: 0;
margin-bottom: 0;
}
nav ul li:not(:last-child) { nav ul li:not(:last-child) {
margin-right: 1rem; margin-right: 1rem;
} }
@ -477,8 +482,6 @@ footer nav {
.main__title h1 { .main__title h1 {
padding-bottom: 0; padding-bottom: 0;
font-size: var(--font-size-3xl);
line-height: var(--line-height-3xl);
} }
.now__topper h2 { .now__topper h2 {
@ -489,6 +492,7 @@ footer nav {
max-width: 768px; max-width: 768px;
} }
.main__title h1,
.page__header { .page__header {
font-size: var(--font-size-3xl); font-size: var(--font-size-3xl);
line-height: var(--line-height-3xl); line-height: var(--line-height-3xl);

View file

@ -1,5 +1,6 @@
--- ---
permalink: /blogroll.opml permalink: /blogroll.opml
layout: null
eleventyExcludeFromCollections: true eleventyExcludeFromCollections: true
--- ---
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>