fix(favorites): change inactive heart color to grey

This commit is contained in:
2026-03-04 16:40:33 -05:00
parent 35e2a6d632
commit 669c834826

View File

@ -95,7 +95,7 @@ async function handleToggle() {
}
.heart-icon {
color: #e91e63;
color: #9ca3af;
font-size: 22px;
transition: all 0.3s;
position: relative;
@ -103,6 +103,7 @@ async function handleToggle() {
}
.favorite-btn.is-favorite .heart-icon {
color: #e91e63;
animation: heartBeat 0.5s ease;
}