feat: add padding to the abstract wrapper

This commit is contained in:
RadoslavDimchev 2023-08-25 11:05:39 +03:00
parent 68d1d3924f
commit 9340515504
2 changed files with 2 additions and 1 deletions

View File

@ -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>

View File

@ -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}