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 = () => {
|
const Overview = () => {
|
||||||
return (
|
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' }}>
|
<TextTam fontSize={27} fontWeight={'600'} style={{ marginBottom: '5px' }}>
|
||||||
Overview
|
Overview
|
||||||
</TextTam>
|
</TextTam>
|
||||||
|
|
|
@ -15,6 +15,7 @@ const ValidatorBoxWrapper = ({ children }: ValidatorBoxWrapperProps) => {
|
||||||
flexDirection: 'row',
|
flexDirection: 'row',
|
||||||
backgroundColor: '#fff',
|
backgroundColor: '#fff',
|
||||||
zIndex: 999,
|
zIndex: 999,
|
||||||
|
padding: '16px 32px',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
|
|
Loading…
Reference in New Issue