fill width

This commit is contained in:
Hristo Nedelkov 2023-10-21 19:32:52 +03:00
parent d23d5d23ce
commit d3074288ce
3 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ const CPUCard = ({ load }: CPUCardProps) => {
const message = currentLoad < 80 ? 'Good' : 'Poor'
return (
<DashboardCardWrapper padding="0" height="156px" width="260px">
<DashboardCardWrapper padding="0" height="156px" minWidth='290px' >
<YStack
style={{
borderRadius: '16px',

View File

@ -48,7 +48,7 @@ const NetworkCard = ({ uploadRate, downloadRate }: NetworkCardProps) => {
const message = currentLoad > 60 ? 'Good' : 'Poor'
return (
<DashboardCardWrapper padding="0" width="260px" height="156px">
<DashboardCardWrapper padding="0" minWidth='290px' height="156px">
<YStack
style={{
borderRadius: '16px',

View File

@ -35,7 +35,7 @@ const StorageCard = ({ storage, maxStorage }: StorageCardProps) => {
}
return (
<DashboardCardWrapper padding="0" width="260px" height={'156px'}>
<DashboardCardWrapper padding="0" minWidth='290px' height={'156px'}>
<YStack
style={{
borderRadius: '16px',