fix: expand chevron invisible on accent background

ChevronExpandIcon used text-dark-400 (gray) on the accent gradient
circle (green) — completely invisible. Changed to text-white.
This commit is contained in:
Fringg
2026-04-24 06:08:57 +03:00
parent 0844144e23
commit 3801c3626a

View File

@@ -121,10 +121,7 @@ const ChevronDownIcon = () => (
const ChevronExpandIcon = ({ expanded }: { expanded: boolean }) => (
<svg
className={cn(
'h-4 w-4 text-dark-400 transition-transform duration-200',
expanded && 'rotate-180',
)}
className={cn('h-4 w-4 text-white transition-transform duration-200', expanded && 'rotate-180')}
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"