Skip to content

Commit

Permalink
Resize article name font size
Browse files Browse the repository at this point in the history
  • Loading branch information
sora32127 committed Apr 23, 2024
1 parent 2651181 commit d11a052
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/CommentShowCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function CommentShowCard({
<div className="w-6 h-6">
<ArticleIcon />
</div>
<NavLink to={`/archives/${postId}`} className="text-lg font-bold text-info underline underline-offset-4 post-title">{dimPosts.postTitle}</NavLink>
<NavLink to={`/archives/${postId}`} className="text-xl font-bold text-info underline underline-offset-4 post-title">{dimPosts.postTitle}</NavLink>
</div>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion app/components/PostCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default function PostCard({
</div>
<div className="grid grid-cols-[auto_1fr] gap-2 mb-2 items-center">
<ArticleIcon/>
<NavLink to={`/archives/${postId}`} className="text-lg font-bold text-info underline underline-offset-4 post-title">{postTitle}</NavLink>
<NavLink to={`/archives/${postId}`} className="text-xl font-bold text-info underline underline-offset-4 post-title">{postTitle}</NavLink>
</div>
{highLightedText && (
<p className="neutral-content">{parse(highLightedText)}</p>
Expand Down

0 comments on commit d11a052

Please sign in to comment.