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