feat(validator-management): add widths for cards

This commit is contained in:
RadoslavDimchev 2024-05-07 15:50:13 +03:00 committed by Emil Ivanichkov
parent f3972946c6
commit d6dbc130a6
1 changed files with 4 additions and 4 deletions

View File

@ -21,14 +21,14 @@ const ValidatorManagement = () => {
className={'transparent-scrollbar'} className={'transparent-scrollbar'}
> >
<ManagementHeader /> <ManagementHeader />
<XStack space="$4"> <XStack space="$4" style={{ width: '100%' }}>
<DeviceUptime style={{ height: 'auto' }} /> <DeviceUptime style={{ height: 'auto' }} />
<XStack space="$4" style={{ width: '50%' }}> <XStack space="$4" style={{ width: '100%' }}>
<YStack space="$4"> <YStack space="$4" style={{ width: '32%' }}>
<ConsensusUptimeCard /> <ConsensusUptimeCard />
<ExecutionUptime /> <ExecutionUptime />
</YStack> </YStack>
<YStack space="$4"> <YStack space="$4" style={{ width: '16%' }} >
<BasicInfoCard title="Network Validators" value="498,156" /> <BasicInfoCard title="Network Validators" value="498,156" />
<BasicInfoCard title="Queue" value="145" /> <BasicInfoCard title="Queue" value="145" />
</YStack> </YStack>