fix: change titles and remove container

This commit is contained in:
RadoslavDimchev 2023-08-16 13:45:33 +03:00
parent 8b6149cae8
commit 5108865895
1 changed files with 21 additions and 24 deletions

View File

@ -27,31 +27,28 @@ const DeviceSyncStatus = () => {
]} ]}
/> />
</Stack> </Stack>
<div className="container-inner landing-page"> <YStack
<YStack space={'$4'}
space={'$4'} style={{
style={{ justifyContent: 'end',
justifyContent: 'end', alignItems: 'start',
alignItems: 'start', marginBottom: '2rem',
marginBottom: '2rem', maxWidth: '100%',
maxWidth: '100%', }}
}} >
> <NimbusLogo />
<NimbusLogo /> <Titles
<Titles title="Sync Status"
title="Device Health Check" subtitle="Monitor your Validator Client and Beacon Node syncing progression."
subtitle="Configure your device to start Staking on Nimbus" />
isAdvancedSettings={true} <YStack>
/> <SyncStatusCardExecution synced={132432} total={200000} />
<YStack> <SyncStatusCardConsensus synced={149500} total={160000} />
<SyncStatusCardExecution synced={132432} total={200000} />
<SyncStatusCardConsensus synced={149500} total={160000} />
</YStack>
<Stack style={{ marginTop: '1rem' }}>
<Button>Continue</Button>
</Stack>
</YStack> </YStack>
</div> <Stack style={{ marginTop: '1rem' }}>
<Button>Continue</Button>
</Stack>
</YStack>
</PageWrapperShadow> </PageWrapperShadow>
) )
} }