Skip to content

Commit f8c39f2

Browse files
committed
chore: 개인 후원자 목록의 스타일 변경
1 parent ed97dc2 commit f8c39f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/shop/src/components/features/patron_list.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ const InnerPatronList: React.FC<{ year: number }> = ErrorBoundary.with(
1111
const { data } = ShopHooks.usePatrons(shopAPIClient, year);
1212
return data.map((patron) => (
1313
<Stack key={patron.name} spacing={1} sx={{ my: 2 }}>
14-
<Typography variant="h6" fontWeight="700" children={patron.name} />
15-
{patron.contribution_message && <Typography variant="subtitle1" children={patron.contribution_message} />}
14+
<Typography variant="h5" sx={(theme) => ({ fontWeight: 400, color: theme.palette.primary.dark })} children={patron.name} />
15+
<Typography variant="subtitle1" children={patron.contribution_message || "Weave with Python!"} />
1616
</Stack>
1717
));
1818
})

0 commit comments

Comments
 (0)