From 5a74f9c7b4906fb1948d9b1047715bd876b3d4b2 Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Thu, 28 Sep 2023 22:53:46 +0300 Subject: [PATCH] add a light stroke to the normal CPU card --- src/components/Charts/DeviceCPULoad.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Charts/DeviceCPULoad.tsx b/src/components/Charts/DeviceCPULoad.tsx index 0f7b5108..5728ef5b 100644 --- a/src/components/Charts/DeviceCPULoad.tsx +++ b/src/components/Charts/DeviceCPULoad.tsx @@ -46,7 +46,7 @@ const DeviceCPULoad = ({ load }: DeviceCPULoadProps) => { width: '50%', minHeight: '135px', borderRadius: '16px', - border: message === 'Poor' ? '1px solid #D92344' : 'none', + border: message === 'Poor' ? '1px solid #D92344' : '1px solid #E0E0E0', backgroundColor: isHovered ? '#f8f6ff' : (message === 'Poor' ? '#fefafa' : '#fff'), }} onMouseEnter={() => setIsHovered(true)}