We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed97dc2 commit f8c39f2Copy full SHA for f8c39f2
1 file changed
packages/shop/src/components/features/patron_list.tsx
@@ -11,8 +11,8 @@ const InnerPatronList: React.FC<{ year: number }> = ErrorBoundary.with(
11
const { data } = ShopHooks.usePatrons(shopAPIClient, year);
12
return data.map((patron) => (
13
<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} />}
+ <Typography variant="h5" sx={(theme) => ({ fontWeight: 400, color: theme.palette.primary.dark })} children={patron.name} />
+ <Typography variant="subtitle1" children={patron.contribution_message || "Weave with Python!"} />
16
</Stack>
17
));
18
})
0 commit comments