fix: add space between cards in column

This commit is contained in:
Hristo Nedelkov 2024-01-27 09:22:05 +02:00
parent 5651b2d9fd
commit c9aacf51fa
1 changed files with 3 additions and 1 deletions

View File

@ -9,6 +9,7 @@ type ActivationCardProps = {
gaugeColor?: string
gaugeSynced?: number
gaugeTotal?: number
isLast?: boolean
}
const ActivationCard = ({
@ -18,6 +19,7 @@ const ActivationCard = ({
gaugeColor,
gaugeSynced,
gaugeTotal,
isLast,
}: ActivationCardProps) => {
return (
<YStack
@ -26,7 +28,7 @@ const ActivationCard = ({
border: '1px solid rgba(0, 0, 0, 0.15)',
padding: '12px 16px',
backgroundColor: '#FFF',
marginBottom: !isLast && '10px',
flex: 1,
}}
>