fix(migrate-panel): spacing between components
This commit is contained in:
parent
421e04efd9
commit
ad5c13d491
|
@ -44,7 +44,9 @@ const MigratePanel = () => {
|
|||
/>
|
||||
)}
|
||||
</div>
|
||||
<XStack style={{ width: '100%', justifyContent: 'end' }}>
|
||||
<XStack
|
||||
style={{ width: '100%', justifyContent: 'end', marginTop: '6px' }}
|
||||
>
|
||||
<Button onPress={migrateValidatorHandler}>Migrate Validator</Button>
|
||||
</XStack>
|
||||
</PanelWrapper>
|
||||
|
|
|
@ -6,7 +6,7 @@ type PanelWrapperProps = {
|
|||
|
||||
const PanelWrapper = ({ children }: PanelWrapperProps) => {
|
||||
return (
|
||||
<YStack space={'$2'} style={{ padding: '30px', alignItems: 'start' }}>
|
||||
<YStack space={'$3'} style={{ padding: '30px', alignItems: 'start' }}>
|
||||
{children}
|
||||
</YStack>
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue