fix overflow bug
This commit is contained in:
parent
9ef747c513
commit
45ceb0b7f3
|
@ -18,7 +18,7 @@ const ValidatorSetupInstall = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<YStack style={{ padding: '26px 32px' }}>
|
<YStack style={{ padding: '26px 32px', width:'fit-content'}} >
|
||||||
<Text size={27} weight={'semibold'}>
|
<Text size={27} weight={'semibold'}>
|
||||||
Validator Setup
|
Validator Setup
|
||||||
</Text>
|
</Text>
|
||||||
|
@ -35,7 +35,7 @@ const ValidatorSetupInstall = () => {
|
||||||
<Text size={19} weight={'semibold'}>
|
<Text size={19} weight={'semibold'}>
|
||||||
Installing {selectedClient}
|
Installing {selectedClient}
|
||||||
</Text>
|
</Text>
|
||||||
<Stack flexWrap="wrap">
|
<Stack>
|
||||||
<Markdown children={DOCUMENTATIONS[selectedClient].general} />
|
<Markdown children={DOCUMENTATIONS[selectedClient].general} />
|
||||||
<OSCards selectedOS={selectedOS} handleOSCardClick={handleOSCardClick} />
|
<OSCards selectedOS={selectedOS} handleOSCardClick={handleOSCardClick} />
|
||||||
<Markdown children={DOCUMENTATIONS[selectedClient].documentation[selectedOS]} />
|
<Markdown children={DOCUMENTATIONS[selectedClient].documentation[selectedOS]} />
|
||||||
|
|
Loading…
Reference in New Issue