[READ-ONLY] Mirror of https://github.com/flo-bit/blog-template. minimalistic astro blog template flo-bit.dev/blog-template/
astro blog template
0

Configure Feed

Select the types of activity you want to include in your feed.

fix small layout issues

Florian (Oct 27, 2024, 2:24 AM +0100) acae1472 fda5a299

+3 -3
+1 -1
src/pages/pages/[...index].astro
··· 36 36 <BaseLayout title={SITE_TITLE} description={SITE_DESCRIPTION}> 37 37 <Header active="blog" /> 38 38 39 - <main class="mx-auto max-w-2xl lg:max-w-3xl py-16"> 39 + <main class="mx-auto max-w-2xl lg:max-w-3xl py-16 px-4"> 40 40 <BlogPost> 41 41 <h1>All blog posts</h1> 42 42 <div class="my-14 space-y-16 max-w-3xl not-prose">
+2 -2
src/pages/tags/[...tag]/[...index].astro
··· 80 80 " " + 81 81 colorAccentClasses[ACCENT_COLOR]} 82 82 > 83 - <h1 class="inline-flex gap-2 flex-col sm:flex-row sm:items-center"> 83 + <h1 class="inline-flex gap-4 flex-col sm:flex-row sm:items-center"> 84 84 Posts tagged with <div> 85 85 <p 86 - class="not-prose bold rounded-full inline-block bg-base-200 px-4 py-1.5 text-base-800 dark:bg-base-800 dark:text-base-300 border border-base-300 dark:border-base-700" 86 + class="not-prose bold text-xl rounded-full inline-block bg-base-200 px-4 py-1.5 text-base-800 dark:bg-base-800 dark:text-base-300 border border-base-300 dark:border-base-700" 87 87 > 88 88 {tag} 89 89 </p>