feat: global css style
This commit is contained in:
parent
9a059d777a
commit
7fb4035f31
2 changed files with 6 additions and 1 deletions
|
|
@ -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>
|
<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 ? (
|
{sortedCategories.length === 0 ? (
|
||||||
<p class="muted">nothing here</p>
|
<p class="muted">nothing here</p>
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,11 @@ body {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
margin-bottom: 0.25rem;
|
margin-bottom: 0.25rem;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue