feat: add padding to the abstract wrapper
This commit is contained in:
parent
68d1d3924f
commit
9340515504
|
@ -7,7 +7,7 @@ import { ArrowRightIcon } from '@status-im/icons'
|
|||
const Overview = () => {
|
||||
return (
|
||||
<>
|
||||
<YStack className="layout-left" space={'$5'} style={{ padding: '16px 32px' }}>
|
||||
<YStack className="layout-left" space={'$5'}>
|
||||
<TextTam fontSize={27} fontWeight={'600'} style={{ marginBottom: '5px' }}>
|
||||
Overview
|
||||
</TextTam>
|
||||
|
|
|
@ -15,6 +15,7 @@ const ValidatorBoxWrapper = ({ children }: ValidatorBoxWrapperProps) => {
|
|||
flexDirection: 'row',
|
||||
backgroundColor: '#fff',
|
||||
zIndex: 999,
|
||||
padding: '16px 32px',
|
||||
}}
|
||||
>
|
||||
{children}
|
||||
|
|
Loading…
Reference in New Issue