fix: add space between cards in column
This commit is contained in:
parent
5651b2d9fd
commit
c9aacf51fa
|
@ -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,
|
||||
}}
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue