FIX INFO CARDS

This commit is contained in:
Hristo Nedelkov 2023-10-13 14:46:11 +03:00
parent 57f0bbfda0
commit 64de1fbf44
1 changed files with 5 additions and 5 deletions

View File

@ -6,10 +6,10 @@ const BasicInfoCards = () => {
return ( return (
<Stack <Stack
style={{ style={{
display: 'grid', display: 'flex',
gridTemplateColumns: 'repeat(5, 1fr)', flexDirection: 'row',
gap: '1vw', flexWrap: 'wrap',
gap: '1vw'
}} }}
> >
<BasicInfoCard title="Active Validators" value="6" /> <BasicInfoCard title="Active Validators" value="6" />
@ -21,4 +21,4 @@ const BasicInfoCards = () => {
) )
} }
export default BasicInfoCards export default BasicInfoCards;