Skip to content

Commit

Permalink
fix(style): mobile post card
Browse files Browse the repository at this point in the history
  • Loading branch information
GZTimeWalker committed May 9, 2024
1 parent e6ff332 commit 4f0a15a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GZCTF/ClientApp/src/components/MobilePostCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const MobilePostCard: FC<PostCardProps> = ({ post, onTogglePinned }) => {
<Stack gap="xs">
<Box onClick={() => navigate(`/posts/${post.id}`)}>
<Title order={3} pb={4}>
<Text span c={theme.primaryColor}>
<Text fw="bold" fz="h3" span c={theme.primaryColor}>
{post.isPinned ? `${t('post.content.pinned')} ` : '>>> '}
</Text>
{post.title}
Expand Down

0 comments on commit 4f0a15a

Please sign in to comment.