From d50ceb2a37da1bbdd987463a170932eaa066d74c Mon Sep 17 00:00:00 2001 From: Michael Mainguy Date: Tue, 19 Aug 2025 08:03:07 -0500 Subject: [PATCH] Update progress bar colors to match statistics card gradient MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes progress bar fill color from green gradient to the purple-blue gradient used in the overview statistics cards for consistent visual design across the Request Breakdown page. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/components/RequestBreakdown.module.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/RequestBreakdown.module.css b/src/components/RequestBreakdown.module.css index 95451cd..216d26d 100644 --- a/src/components/RequestBreakdown.module.css +++ b/src/components/RequestBreakdown.module.css @@ -144,7 +144,7 @@ .progressFill { height: 100%; - background: linear-gradient(90deg, #4CAF50 0%, #45a049 100%); + background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 3px; transition: width 0.3s ease; }