Skip to content

Commit

Permalink
improved supporters list
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-m-o committed Dec 27, 2023
1 parent 1ce8b0d commit f50248f
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions yomininja-e/renderer/components/AppInfo/AppInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function AppInfo() {

const AppName = ( props ) => (
<Typography variant="h4" mb={1} {...props}>
<AppNameFirstLetter className={AppNameFont.className}>Y</AppNameFirstLetter>omi Ninja
YomiNinja
</Typography>
);

Expand All @@ -71,7 +71,7 @@ export default function AppInfo() {
pl={5}
pr={5}
pt={0}
maxWidth='1000px'
maxWidth='1600px'
sx={{ userSelect: 'none' }}
>

Expand Down Expand Up @@ -156,14 +156,18 @@ export default function AppInfo() {
<Typography variant="h4" mb={2} mt={7}>
Supporters
</Typography>

{ supporters.map( ( supporter, idx ) => (
<Typography key={idx} variant="h5" mb={1}
// sx={{ textTransform: 'capitalize' }}
>
{ supporter }
</Typography>
)) }

<Grid container spacing={1} columns={16}>
{ supporters.map( ( supporter, idx ) => (
<Grid item key={idx} xl={4} md={4} sm={8} xs={16}>
<Typography variant="h5"
// sx={{ textTransform: 'capitalize' }}
>
{ supporter }
</Typography>
</Grid>
)) }
</Grid>

</Box>

Expand Down

0 comments on commit f50248f

Please sign in to comment.