Fix: Solucionados los colores hardcoded en modo claro para DiscoverView

This commit is contained in:
2026-03-21 17:03:08 -05:00
parent ea5ef74a54
commit 2831d49343

View File

@ -441,19 +441,21 @@ function resetFilters() {
}
.activity-card {
background: #0B132B;
background: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 1.25rem;
overflow: hidden;
cursor: pointer;
display: flex;
flex-direction: column;
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
transition: transform 0.2s ease, box-shadow 0.2s ease;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.activity-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 30px rgba(0,0,0,0.25);
border-color: var(--active-color);
box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.card-img-wrap {
@ -480,7 +482,7 @@ function resetFilters() {
margin: 0;
font-size: 0.9375rem;
font-weight: 800;
color: #ffffff;
color: var(--text-primary);
line-height: 1.3;
display: -webkit-box;
-webkit-line-clamp: 3;