fix(manage-validator): make 50/50 width for two panels

This commit is contained in:
RadoslavDimchev 2024-02-20 12:11:31 +02:00 committed by Emil Ivanichkov
parent cfa653749d
commit 1cd9dd70d2
1 changed files with 9 additions and 2 deletions

View File

@ -16,8 +16,14 @@ import ValidatorSettingsCards from './ValidatorSeettingsCards'
const ManageValidator = () => {
return (
<XStack flexGrow={1}>
<Stack width={'50%'} space="$2">
<XStack
width={'min-content'}
alignItems="flex-start"
style={{
flexGrow: 1,
}}
>
<Stack width={'50%'} flexGrow={1} space={'$2'}>
<Header />
<YStack backgroundColor="#F4F6FE" space={'$3'}>
<ValidatorInfo />
@ -35,4 +41,5 @@ const ManageValidator = () => {
</XStack>
)
}
export default ManageValidator