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
|
||||
|
@ -72,7 +77,7 @@ const ConsensusSelection = () => {
|
|||
|
||||
<XStack space={'$8'} flexWrap="wrap">
|
||||
<ConsensusClientCard name={clients[0].name} icon={clients[0].icon} />
|
||||
<YStack width={windowSize.width<780 ? '100%' : '70%'} space={'$4'}>
|
||||
<YStack width={windowSize.width < 780 ? '100%' : '70%'} space={'$4'}>
|
||||
<Text size={19}>The resource efficient Ethereum Clients.</Text>
|
||||
<Text size={15}>
|
||||
{selectedClient} is a client implementation for both execution and consensus layers that
|
||||
|
|
Loading…
Reference in New Issue