Skip to content

Commit be7e1ac

Browse files
committed
issue #64
1 parent fb384a6 commit be7e1ac

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

frontend/src/pages/dreams/mine/card/dialog/MyDreamCardDialog.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ interface MyDreamCardDialogProps {
1111

1212
const MyDreamCardDialog = ({ dream, setMyDreams, onClose, }: MyDreamCardDialogProps) => {
1313
return (
14-
<AlertDialog.Content className="flex flex-col h-full min-h-[340px] max-w-[400px]">
14+
<AlertDialog.Content className="flex flex-col h-full min-h-[360px] max-w-[400px]">
1515
<AlertDialog.Title></AlertDialog.Title>
1616
<AlertDialog.Description size="4" className="flex-grow">
17-
{dream.content}
17+
<div className="font-mpulus text-2xl text-center">{dream.content}</div>
1818
</AlertDialog.Description>
1919
{0 < dream.hashtags.length && (
2020
<div className="text-center my-2 text-pink-500">
2121
{dream.hashtags.map((tag, i) => (
22-
<span key={i} className="mr-3 text-sm font-semibold underline">
22+
<span key={i} className="mr-3 text-lg font-semibold underline">
2323
{"# " + tag.name}
2424
</span>
2525
))}

frontend/src/pages/dreams/public/dialog/PublicDreamDardDialog.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ const PublicDreamCardDialog = ({ dream }: MyDreamCardDialogProps) => {
1010
<AlertDialog.Content className="flex flex-col h-full min-h-[300px] max-w-[400px]">
1111
<AlertDialog.Title></AlertDialog.Title>
1212
<AlertDialog.Description size="4" className="flex-grow">
13-
{dream.content}
13+
<div className="font-mpulus text-2xl text-center">
14+
{dream.content}
15+
</div>
1416
</AlertDialog.Description>
1517
{0 < dream.hashtags.length && (
1618
<div className="text-center my-2 text-pink-500">
1719
{dream.hashtags.map((tag, i) => (
18-
<span key={i} className="mr-3 text-sm font-semibold underline">
20+
<span key={i} className="mr-3 text-lg font-semibold underline">
1921
{"# " + tag.name}
2022
</span>
2123
))}

0 commit comments

Comments
 (0)