Increase dots size in product card list (#3505)

This commit is contained in:
Timur Carpeev 2023-04-20 09:06:40 +02:00 committed by GitHub
parent dc960a22b4
commit 70ed5f87a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,8 +18,8 @@ const getStatusColor = (
export const StatusDot: React.FC<StatusDotProps> = ({ status }) => (
<Box
width={4}
height={4}
width={5}
height={5}
borderRadius="50%"
backgroundColor={getStatusColor(status)}
/>