This commit is contained in:
Hristo Nedelkov 2023-10-13 18:35:20 +03:00
parent fd151db978
commit f42d924fd0
2 changed files with 4 additions and 4 deletions

View File

@ -37,8 +37,8 @@ const BalanceChartCard = () => {
}
return (
<DashboardCardWrapper height='fit-content' minWidth="536px">
<YStack space={'$4'} >
<DashboardCardWrapper height="fit-content" minWidth="536px">
<YStack space={'$4'}>
<XStack justifyContent={'space-between'}>
<YStack>
<Text size={15} weight={'semibold'}>

View File

@ -13,7 +13,7 @@ const DashboardCardWrapper = ({
padding = '12px 16px',
width,
height,
minWidth
minWidth,
}: DashboardCardWrapperProps) => {
return (
<Shadow
@ -25,7 +25,7 @@ const DashboardCardWrapper = ({
borderRadius: '16px',
padding,
backgroundColor: '$background',
minWidth: minWidth
minWidth: minWidth,
}}
>
{children}