Optimierungen in Handschriften; Schriftgröße in Menü

This commit is contained in:
Simon Martens
2023-02-04 19:13:19 +01:00
parent 41de6530c7
commit 492caf6eb7
9 changed files with 21 additions and 20 deletions

View File

@@ -34,9 +34,9 @@ eleventyNavigation:
<div class="mt-4 w-full" id="list">
{%- for post in collections.handschriften -%}
<div class="handschrift-sammlung flex flex-row mb-8 w-full category" id="{{ post.data.Ort | safe }}">
<div class="text-xl grow font-bold self-start z-0 sticky top-20 order-0">{{ post.data.Ort | safe }}</div>
<div class="border-l-2 pl-4 grow-0 shrink-0 w-[90ch] border-slate-400 flex flex-row flex-wrap gap-x-4 gap-y-5 justify-start">{{ post.content | safe }}</div>
<div class="bg-slate-100 p-4 handschrift-sammlung flex flex-row mb-8 w-full category" id="{{ post.data.Ort | safe }}">
<div class="text-xl grow font-bold self-start z-0 sticky top-20 order-0 pr-4">{{ post.data.Ort | safe }}</div>
<div class=" grow-0 shrink-0 w-[90ch] border-slate-400 flex flex-row flex-wrap gap-x-4 gap-y-5 justify-start">{{ post.content | safe }}</div>
</div>
{%- endfor -%}
</div>