Releasing new design #161

Merged
b merged 241 commits from staging into main 2024-08-21 11:38:25 +00:00
2 changed files with 12 additions and 1 deletions
Showing only changes of commit 87e4536713 - Show all commits

View File

@ -32,6 +32,7 @@
flex-direction: column;
gap: 25px;
word-break: break-word;
}
.icon {

View File

@ -196,7 +196,17 @@ export const LandingPage = () => {
and verification.
</Typography>
</Typography>
<Box display={'grid'} gap={'25px'} gridTemplateColumns="repeat(3, 1fr)">
<Box
display={'grid'}
gap={'25px'}
sx={{
gridTemplateColumns: {
xs: '1fr',
sm: 'repeat(2, 1fr)',
xl: 'repeat(3, 1fr)'
}
}}
>
{cards.map((c, i) => (
<CardComponent key={i} {...c} />
))}