We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b733fa0 commit 2d79bc1Copy full SHA for 2d79bc1
2 files changed
src/components/BlockHeader.astro
@@ -1,5 +1,5 @@
1
<h1
2
- class="text-accent text-2xl pb-3 pl-1 mb-2 mt-7 font-semibold border-b-4 border-double border-accent/30"
+ class="text-accent text-2xl pb-3 pl-1 mb-2 mt-4 md:mt-7 font-semibold border-b-4 border-double border-accent/30"
3
>
4
<slot />
5
</h1>
src/components/PostPreview.astro
@@ -15,7 +15,7 @@ const { minutesRead } = remarkPluginFrontmatter
15
const description = remarkPluginFrontmatter.description || post.data.description
16
---
17
18
-<article class="w-full py-5 my-4 border-accent/10">
+<article class="w-full py-5 my-1 md:my-4 border-accent/10">
19
<h1 class="mb-3 text-2xl text-[var(--theme-h1)] font-semibold">
20
<a href={`/posts/${post.id}`}># {post.data.title}</a>
21
0 commit comments