Style execClient

This commit is contained in:
Hristo Nedelkov 2023-09-21 09:36:56 +03:00
parent 0eebbff4bf
commit 71c51c1682
2 changed files with 5 additions and 5 deletions

View File

@ -18,7 +18,7 @@ const data = [
id: 'storage', id: 'storage',
label: 'Used', label: 'Used',
value: 132156, value: 132156,
color: '#ff6161', color: '#7140FD',
}, },
{ {
id: 'storage', id: 'storage',
@ -46,11 +46,11 @@ const ExecutionClientCard = ({ value, total, isTop }: ExecutionClientCardProps)
Execution Client Execution Client
</Text> </Text>
<XStack style={{ justifyContent: 'space-between', alignItems: 'center' }}> <XStack style={{ justifyContent: 'space-between', alignItems: 'center' }}>
<Icon src="./icons/vector.svg" height={46} width={93} /> <Icon src="./icons/vector.svg" height={30} width={60} />
<Stack <Stack
style={{ style={{
height: '115px', height: '56px',
width: '115px', width: '56px',
}} }}
> >
<StandardGauge data={data} /> <StandardGauge data={data} />

View File

@ -17,7 +17,7 @@ const SyncStatusCard = () => {
<YStack> <YStack>
<ExecutionClientCard value={123.424} total={170} isTop={false} /> <ExecutionClientCard value={123.424} total={170} isTop={false} />
<Separator borderColor={'#e3e3e3'} /> <Separator borderColor={'#e3e3e3'} />
<ConsensusCard value={123.424} total={170} isTop={true} /> <ConsensusCard value={123.424} total={170} isTop={true} />
</YStack> </YStack>
</YStack> </YStack>
</DashboardCardWrapper> </DashboardCardWrapper>