fix(validator-setup): wrap paired card to not get full width
This commit is contained in:
parent
ac0d94c67e
commit
51a53d4947
|
@ -11,17 +11,24 @@ const ValidatorSetup = () => {
|
||||||
style={{ width: '100%', padding: '26px 32px' }}
|
style={{ width: '100%', padding: '26px 32px' }}
|
||||||
minHeight={'65vh'}
|
minHeight={'65vh'}
|
||||||
justifyContent={'space-between'}
|
justifyContent={'space-between'}
|
||||||
|
space={'$3'}
|
||||||
>
|
>
|
||||||
<XStack
|
<XStack
|
||||||
justifyContent={'space-between'}
|
justifyContent={'space-between'}
|
||||||
alignItems={'center'}
|
alignItems={'center'}
|
||||||
flexWrap="wrap"
|
flexWrap="wrap"
|
||||||
space={'$8'}
|
|
||||||
>
|
>
|
||||||
<Text size={27} weight={'semibold'}>
|
<Text size={27} weight={'semibold'}>
|
||||||
Client Setup
|
Client Setup
|
||||||
</Text>
|
</Text>
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
display: 'flex',
|
||||||
|
flexWrap: 'wrap',
|
||||||
|
}}
|
||||||
|
>
|
||||||
<PairedDeviceCard />
|
<PairedDeviceCard />
|
||||||
|
</div>
|
||||||
</XStack>
|
</XStack>
|
||||||
<YStack>
|
<YStack>
|
||||||
<Stack style={{ marginBottom: '4px' }}>
|
<Stack style={{ marginBottom: '4px' }}>
|
||||||
|
|
Loading…
Reference in New Issue