Skip to content

Commit 6978de9

Browse files
committed
Fix emoji
1 parent e6283cd commit 6978de9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/Card.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ const Card: React.FC<IProps> = ({
2828
className={className}
2929
>
3030
<div>
31-
{emoji && <Emoji fontSize="5xl" text={emoji} mb={4} />}
31+
{emoji && (
32+
<Emoji fontSize="5xl" text={emoji} mb={4} display="inline-block" />
33+
)}
3234
{title && (
3335
<Text as="h3" mt={0}>
3436
{title}

0 commit comments

Comments
 (0)