From 7fb4035f31e84f2bb01373607836f72620de1421 Mon Sep 17 00:00:00 2001 From: lew Date: Sun, 8 Feb 2026 17:36:51 +0000 Subject: [PATCH] feat: global css style --- www/src/pages/dnd/index.astro | 2 +- www/src/styles/global.css | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/www/src/pages/dnd/index.astro b/www/src/pages/dnd/index.astro index 2a14df3..2df5da7 100644 --- a/www/src/pages/dnd/index.astro +++ b/www/src/pages/dnd/index.astro @@ -18,7 +18,7 @@ const { grouped, categories: sortedCategories } = organizePostsByCategory(posts)

logged in as {session.user?.name} sign out

-Drakkenheim map +Drakkenheim map {sortedCategories.length === 0 ? (

nothing here

diff --git a/www/src/styles/global.css b/www/src/styles/global.css index 26eaf08..8dfeead 100644 --- a/www/src/styles/global.css +++ b/www/src/styles/global.css @@ -4,6 +4,11 @@ body { padding: 1rem; } +img { + max-width: 100%; + height: auto; +} + h1, h2, h3, h4, h5, h6 { margin-bottom: 0.25rem; }