From 80968954d1a793ef4db4f5bfc10de6e5bdf32c59 Mon Sep 17 00:00:00 2001 From: isaacclad Date: Fri, 26 Jun 2026 09:34:27 +0000 Subject: [PATCH] Fix Storefronts sidebar icon stroke weight The Storefronts icon was a custom glyph wrapped in scale(1.7143) + vector-effect=non-scaling-stroke, so its stroke rendered heavier than the other sidebar icons. Swap it for the standard Heroicons building-storefront outline, which uses the same 24x24 viewBox and stroke treatment as its siblings. Co-Authored-By: Claude Opus 4.8 --- resources/views/partials/sidebar.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/partials/sidebar.blade.php b/resources/views/partials/sidebar.blade.php index 91fcdf7..e5c24fa 100644 --- a/resources/views/partials/sidebar.blade.php +++ b/resources/views/partials/sidebar.blade.php @@ -9,7 +9,7 @@ ['name' => 'Overview', 'route' => route('merchant.dashboard'), 'active' => request()->routeIs('merchant.dashboard'), 'icon' => ''], ['name' => 'Storefronts', 'route' => route('merchant.storefronts.index'), 'active' => request()->routeIs('merchant.storefronts.*'), - 'icon' => ''], + 'icon' => ''], ['name' => 'Products', 'route' => route('merchant.products.index'), 'active' => request()->routeIs('merchant.products.*'), 'icon' => ''], ['name' => 'Orders', 'route' => route('merchant.orders.index'), 'active' => request()->routeIs('merchant.orders.*'),