From ec4b18152b61d12075de2a8436a970d907bd44b0 Mon Sep 17 00:00:00 2001 From: Richie Date: Mon, 6 Apr 2026 20:48:08 +1000 Subject: [PATCH] Bump MapPin price font weight from 500 to 600 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Medium (500) was too thin at 11px — semibold (600) reads better while still being lighter than the name (700) for hierarchy. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/atoms/MapPin/MapPin.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/atoms/MapPin/MapPin.tsx b/src/components/atoms/MapPin/MapPin.tsx index 3785dfa..6c3df3f 100644 --- a/src/components/atoms/MapPin/MapPin.tsx +++ b/src/components/atoms/MapPin/MapPin.tsx @@ -174,7 +174,7 @@ export const MapPin = React.forwardRef( component="span" sx={{ fontSize: 11, - fontWeight: 500, + fontWeight: 600, fontFamily: (t: Theme) => t.typography.fontFamily, lineHeight: 1.2, color: active ? palette.activePrice : palette.price,