fix: Style pixel perfect

This commit is contained in:
Hristo Nedelkov 2023-08-15 10:52:51 +03:00
parent c8e136d9ad
commit 980705fa99
2 changed files with 6 additions and 8 deletions

View File

@ -32,7 +32,6 @@ const SyncStatusCardConsensus: React.FC<DeviceStorageHealthProps> = ({ synced, t
variant="$2"
style={{
width: '632px',
height: 'auto',
borderRadius: '16px',
}}
>
@ -56,10 +55,10 @@ const SyncStatusCardConsensus: React.FC<DeviceStorageHealthProps> = ({ synced, t
<StandardGauge data={data()} />
</Stack>
<YStack space={'$3'}>
<Text size={13} color="#09101C" weight={'semibold'}>
<Text size={13} color="#84888e" weight={'semibold'}>
Execution Client
</Text>
<Icon src="/icons/vector.svg" height={46} width={93}></Icon>
<Icon src="/icons/vector.svg" height={46} width={93} marginTop={'30px'} />
</YStack>
</XStack>

View File

@ -31,7 +31,6 @@ const SyncStatusCardExecution: React.FC<DeviceStorageHealthProps> = ({ synced, t
variant="$2"
style={{
width: '632px',
height: 'auto',
borderRadius: '16px',
}}
>
@ -41,7 +40,7 @@ const SyncStatusCardExecution: React.FC<DeviceStorageHealthProps> = ({ synced, t
style={{
padding: '8px 16px',
position: 'relative',
height:'155px'
height: '155px',
}}
>
<Stack
@ -55,12 +54,12 @@ const SyncStatusCardExecution: React.FC<DeviceStorageHealthProps> = ({ synced, t
<StandardGauge data={data()} />
</Stack>
<YStack space={'$3'}>
<Text size={13} color="#09101C" weight={'semibold'}>
<Text size={13} color="#84888e" weight={'semibold'}>
Execution Client
</Text>
<Paragraph color={'#09101C'} size={'$6'} fontWeight={'600'}>
<Text color={'#09101C'} size={27} weight={'semibold'} marginTop={'30px'}>
Geth
</Paragraph>
</Text>
</YStack>
</XStack>