fix(cpu-memory-cards): reduce min widths

This commit is contained in:
RadoslavDimchev 2024-04-20 17:07:39 +03:00 committed by Emil Ivanichkov
parent 0dbd05966b
commit e7ed4bb975
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ const CPUCard = ({ load }: CPUCardProps) => {
return (
<DashboardCardWrapper
style={{ padding: 0, height: '156px', minWidth: '250px' }}
style={{ padding: 0, height: '156px', minWidth: '200px' }}
isErrorBorder={message === 'Poor'}
>
<YStack

View File

@ -45,7 +45,7 @@ const MemoryCard = ({ currentMemory, maxMemory }: MemoryCardProps) => {
return (
<DashboardCardWrapper
style={{ padding: 0, height: '156px', minWidth: '250px' }}
style={{ padding: 0, height: '156px', minWidth: '200px' }}
isErrorBorder={message === 'Poor'}
>
<YStack