From 09cfbaad145b1fa0d058a655551b417b3604b92b Mon Sep 17 00:00:00 2001 From: Ava Gaiety W Date: Sun, 24 Mar 2024 22:50:48 -0500 Subject: [PATCH] glows --- .eleventy.js | 1 + _includes/base-footer.html | 2 +- _includes/content.njk | 2 +- _includes/pinned.njk | 2 +- tailwind.config.js | 5 ++++- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.eleventy.js b/.eleventy.js index 5181779..c071f1e 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -19,6 +19,7 @@ const markdownClassMapping = { em: ['italic', 'text-green'], img: ['max-w-full', 'rounded-lg', 'max-h-600px'], ul: ['list-disc', 'ml-4', 'text-subtext0'], + li: ['text-subtext0'], }; module.exports = function(eleventyConfig) { diff --git a/_includes/base-footer.html b/_includes/base-footer.html index b3a4eda..a07856e 100644 --- a/_includes/base-footer.html +++ b/_includes/base-footer.html @@ -1,7 +1,7 @@
-
+
{%- for navItem in links -%}

diff --git a/_includes/content.njk b/_includes/content.njk index c66ed35..cac6064 100644 --- a/_includes/content.njk +++ b/_includes/content.njk @@ -15,7 +15,7 @@

-
+
{{ content | safe }}
diff --git a/_includes/pinned.njk b/_includes/pinned.njk index fa4ed73..f2ec949 100644 --- a/_includes/pinned.njk +++ b/_includes/pinned.njk @@ -2,7 +2,7 @@
-
+

{{ title | markdown | safe }}

diff --git a/tailwind.config.js b/tailwind.config.js index e1d5633..86770e5 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,5 +1,8 @@ module.exports = { - content: ['./_site/index.html', './_site/**/*.html', '.eleventy.js'], + content: [ + './_site/index.html', './_site/**/*.html', + '.eleventy.js', + ], theme: { screens: { 'xs': '320px',