feat: global css style

This commit is contained in:
Lewis Wynne 2026-02-08 17:36:51 +00:00
parent 9a059d777a
commit 7fb4035f31
2 changed files with 6 additions and 1 deletions

View file

@ -18,7 +18,7 @@ const { grouped, categories: sortedCategories } = organizePostsByCategory(posts)
<p class="muted">logged in as {session.user?.name} <a href="/api/auth/signout">sign out</a></p>
<img src={map.src} alt="Drakkenheim map" style="max-width: 100%; height: auto;" />
<img src={map.src} alt="Drakkenheim map" />
{sortedCategories.length === 0 ? (
<p class="muted">nothing here</p>

View file

@ -4,6 +4,11 @@ body {
padding: 1rem;
}
img {
max-width: 100%;
height: auto;
}
h1, h2, h3, h4, h5, h6 {
margin-bottom: 0.25rem;
}