Skip to content

Commit 410f642

Browse files
committed
Fix: 좌우 여백 추가
1 parent a5a30f2 commit 410f642

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/pages/Sponsor/SponsorDetail.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ const SponsorDetail: React.FC<{ sponsor: APISponsor }> = ({ sponsor }) => {
1515
<a href={sponsor.url}>
1616
<LogoImage src={sponsor.logo_image} alt={sponsor.name} />
1717
</a>
18-
<H3 dangerouslySetInnerHTML={{ __html: sponsor.desc }}></H3>
18+
<H3
19+
dangerouslySetInnerHTML={{ __html: sponsor.desc }}
20+
style={{ maxWidth: "70%", display: "block" }}
21+
/>
1922
</Vertical>
2023
);
2124
};

0 commit comments

Comments
 (0)