format
This commit is contained in:
parent
fd151db978
commit
f42d924fd0
|
@ -37,8 +37,8 @@ const BalanceChartCard = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<DashboardCardWrapper height='fit-content' minWidth="536px">
|
<DashboardCardWrapper height="fit-content" minWidth="536px">
|
||||||
<YStack space={'$4'} >
|
<YStack space={'$4'}>
|
||||||
<XStack justifyContent={'space-between'}>
|
<XStack justifyContent={'space-between'}>
|
||||||
<YStack>
|
<YStack>
|
||||||
<Text size={15} weight={'semibold'}>
|
<Text size={15} weight={'semibold'}>
|
||||||
|
|
|
@ -13,7 +13,7 @@ const DashboardCardWrapper = ({
|
||||||
padding = '12px 16px',
|
padding = '12px 16px',
|
||||||
width,
|
width,
|
||||||
height,
|
height,
|
||||||
minWidth
|
minWidth,
|
||||||
}: DashboardCardWrapperProps) => {
|
}: DashboardCardWrapperProps) => {
|
||||||
return (
|
return (
|
||||||
<Shadow
|
<Shadow
|
||||||
|
@ -25,7 +25,7 @@ const DashboardCardWrapper = ({
|
||||||
borderRadius: '16px',
|
borderRadius: '16px',
|
||||||
padding,
|
padding,
|
||||||
backgroundColor: '$background',
|
backgroundColor: '$background',
|
||||||
minWidth: minWidth
|
minWidth: minWidth,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
|
|
Loading…
Reference in New Issue