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',
label: 'Used',
value: 132156,
color: '#ff6161',
color: '#7140FD',
},
{
id: 'storage',
@ -46,11 +46,11 @@ const ExecutionClientCard = ({ value, total, isTop }: ExecutionClientCardProps)
Execution Client
</Text>
<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
style={{
height: '115px',
width: '115px',
height: '56px',
width: '56px',
}}
>
<StandardGauge data={data} />

View File

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