Skip to content

Commit 1555d3c

Browse files
committed
fixes
1 parent cd25d8c commit 1555d3c

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

src/components/ui/PageTitle.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { title } = Astro.props
1414
line-height: var(--fs-4);
1515
color: var(--text-color-light);
1616
margin-top: 0;
17-
margin-bottom: var(--space-m);
17+
margin-bottom: var(--space-l);
1818
display: flex;
1919
justify-content: space-between;
2020
align-items: flex-end;

src/components/ui/Pagination/index.module.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020

2121
.number:hover,
2222
.number:focus {
23-
background: rgba(255 255 255 / 10%);
23+
background: var(--box-background-color);
24+
text-decoration: none;
2425
}
2526

2627
.number:first-child {

src/features/posts/components/LinkTeaser/index.astro

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ const { Content } = await render(post)
2323
className={styles.title}
2424
as="h3"
2525
/>
26-
<Content />
26+
27+
<div class="markdown">
28+
<Content />
29+
</div>
30+
2731
<LinkActions slug={slug} linkurl={linkurl} />
2832
</article>
Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
.post {
22
display: block;
33
margin-top: var(--space-m);
4-
margin-bottom: var(--space-m);
4+
margin-bottom: var(--space-xl);
55
}
66

7-
.post + .post {
8-
margin-top: var(--space-m);
7+
.post blockquote:last-of-type {
8+
margin-bottom: 0;
9+
}
10+
11+
.post blockquote:last-of-type > p:last-of-type {
12+
margin-bottom: var(--space-s);
913
}

0 commit comments

Comments
 (0)