Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Cards.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function GridItem({ classes, data, bg, full }) {
// From 960px wide and above, I take up 25% of the device (3/12), so 4 columns fit the screen.
<Grid item sm={12} md={full ? 12 : 6}>
<Paper
className={clsx(classes.paper, { ["small"]: isXsScreenAndSmaller, full })}
className={clsx(classes.paper, { "small": isXsScreenAndSmaller, full })}
style={{ backgroundColor: data.bg }}
>
<Grid item xs container direction="column">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Staking.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default function Staking() {
Any questions? Try our <Link href="#staking-faq" underline="always" className={classes.stakingFaqLink}>Staking FAQ.</Link>
</Typography>

<Grid container justify="space-around" spacing={6} className={classes.grid}>
<Grid container justifyContent="space-around" spacing={6} className={classes.grid}>
<Card
num={1}
pointerOffset={56}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Validator.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function Validator() {
return (
<Container
p={2}
maxWidth="100%"
maxWidth='xl'
component="section"
className={classes.container}
>
Expand All @@ -86,7 +86,7 @@ export default function Validator() {
className={isSmScreenAndSmaller ? classes.imageSm : classes.image}
/>
</Grid>
<Grid item xs={12} md={6} className={isSmScreenAndSmaller && classes.center}>
<Grid item xs={12} md={6} className={isSmScreenAndSmaller ? classes.center : null}>
<Typography
component="h3"
variant="h5"
Expand Down