fix: update stat cards to use primary colors instead of green/blue
- Changed Réclamés stat card on history page from green to primary - Changed Réclamés filter button from green to primary - Unified Gains réclamés on client page to use primary-600 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
0efd921bbf
commit
211355f6a4
|
|
@ -123,12 +123,12 @@ export default function ClientPage() {
|
|||
<p className="text-sm font-medium text-gray-600 mb-2">
|
||||
Gains réclamés
|
||||
</p>
|
||||
<p className="text-4xl font-bold text-primary-500">
|
||||
<p className="text-4xl font-bold text-primary-600">
|
||||
{stats.claimed}
|
||||
</p>
|
||||
</div>
|
||||
<div className="w-16 h-16 bg-primary-100 rounded-full flex items-center justify-center">
|
||||
<svg className="w-8 h-8 text-primary-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<svg className="w-8 h-8 text-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
</svg>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -120,10 +120,10 @@ export default function HistoriquePage() {
|
|||
<div className="flex items-center justify-between">
|
||||
<div>
|
||||
<p className="text-sm font-medium text-gray-600 mb-2">Réclamés</p>
|
||||
<p className="text-4xl font-bold text-green-600">{stats.claimed}</p>
|
||||
<p className="text-4xl font-bold text-primary-600">{stats.claimed}</p>
|
||||
</div>
|
||||
<div className="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center">
|
||||
<svg className="w-8 h-8 text-green-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<div className="w-16 h-16 bg-primary-100 rounded-full flex items-center justify-center">
|
||||
<svg className="w-8 h-8 text-primary-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
</svg>
|
||||
</div>
|
||||
|
|
@ -189,7 +189,7 @@ export default function HistoriquePage() {
|
|||
onClick={() => setFilter('CLAIMED')}
|
||||
className={`px-4 py-2 rounded-lg font-semibold transition-all ${
|
||||
filter === 'CLAIMED'
|
||||
? 'bg-green-600 text-white shadow-lg'
|
||||
? 'bg-primary-600 text-white shadow-lg'
|
||||
: 'bg-beige-100 text-gray-700 hover:bg-beige-200'
|
||||
}`}
|
||||
>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user