feat: use new css class names with divs

This commit is contained in:
RadoslavDimchev 2023-11-17 23:28:29 +02:00
parent f5f931d1ee
commit 70b66834af
1 changed files with 16 additions and 12 deletions

View File

@ -15,18 +15,22 @@ const ManagementHeader = () => {
> >
<TitleLogo subtitle="Validator Management" /> <TitleLogo subtitle="Validator Management" />
<XStack space={'$2'}> <XStack space={'$2'}>
<SyncStatusCard <div className="sync-status-card-container-first">
synced={123.524} <SyncStatusCard
total={172.503} synced={123.524}
title="Execution Sync Status" total={172.503}
color="#2a4af5" title="Execution Sync Status"
/> color="#2a4af5"
<SyncStatusCard />
synced={123.524} </div>
total={172.503} <div className="sync-status-card-container-second">
title="Consensus Sync Status" <SyncStatusCard
color="#ff6161" synced={123.524}
/> total={172.503}
title="Consensus Sync Status"
color="#ff6161"
/>
</div>
</XStack> </XStack>
</XStack> </XStack>
) )