Make parent responsive
This commit is contained in:
parent
3fcd265d44
commit
692f36ca96
|
@ -39,7 +39,12 @@ const ConsensusSelection = () => {
|
|||
<Text size={27} weight={'semibold'}>
|
||||
Client Setup
|
||||
</Text>
|
||||
<XStack space={'$2'} flexWrap="wrap">
|
||||
<XStack
|
||||
space={'$2'}
|
||||
flexWrap={windowSize.width < 735 ? 'wrap' : 'nowrap'}
|
||||
marginTop={windowSize.width < 735 ? '20px' : 0}
|
||||
width={windowSize.width < 580 ? '100%' : 'auto'}
|
||||
>
|
||||
<PairedDeviceCard />
|
||||
|
||||
<ConsensusGaugeCard
|
||||
|
|
Loading…
Reference in New Issue