Skip to content

Commit 9d7ae5a

Browse files
committed
more fixes
1 parent d2005ae commit 9d7ae5a

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

website/src/components/code-page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ export function CodePage({ allTags, data }: CodePageProps) {
258258
</Tag>
259259
))}
260260
</div>
261-
<Markdown className="[&_a]:text-primary grow">
261+
<Markdown className="[&_a]:text-primary grow line-clamp-4 lg:text-lg">
262262
{description}
263263
</Markdown>
264264
{hasMetadata && (

website/src/pages/blog.mdx

+7-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default function Blog(props) {
1212
)
1313
const currentTag = asPath.startsWith("/blog")
1414
? ""
15-
: asPath.replace("/tags/", "").replace(/\/$/, '')
15+
: asPath.replace("/tags/", "").replace(/\/$/, "")
1616
//
1717
const tags = blogs
1818
.flatMap(blog => blog.frontMatter.tags)
@@ -33,7 +33,7 @@ export default function Blog(props) {
3333
data-active={currentTag === tag ? "" : undefined}
3434
className={clsx("tag [&[data-active]]:bg-primary capitalize")}
3535
>
36-
{tag.replaceAll('-', ' ')} ({count})
36+
{tag.replaceAll("-", " ")} ({count})
3737
</NextLink>
3838
))}
3939
</div>
@@ -46,11 +46,11 @@ export default function Blog(props) {
4646
as={Link}
4747
href={page.route}
4848
key={page.route}
49-
className="hover:!border-primary transition-colors"
49+
className="hover:!border-primary transition-colors flex flex-col"
5050
>
5151
<div className="gap-2 flex mb-7">
5252
{page.frontMatter.tags.map(tag => (
53-
<Tag key={tag}>{tag.replaceAll('-', ' ')}</Tag>
53+
<Tag key={tag}>{tag.replaceAll("-", " ")}</Tag>
5454
))}
5555
</div>
5656
<div className="font-extrabold text-3xl text-balance">
@@ -67,7 +67,9 @@ export default function Blog(props) {
6767
<span className="border-r border-gray-500" />
6868
<span>by {page.frontMatter.byline}</span>
6969
</div>
70-
<span className="text-primary block font-bold">Read more →</span>
70+
<span className="text-primary block font-bold mt-auto">
71+
Read more →
72+
</span>
7173
</Card>
7274
),
7375
)

0 commit comments

Comments
 (0)