Fix: Solucionados los colores hardcoded en modo claro para DiscoverView
This commit is contained in:
@ -441,19 +441,21 @@ function resetFilters() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.activity-card {
|
.activity-card {
|
||||||
background: #0B132B;
|
background: var(--card-bg);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
border-radius: 1.25rem;
|
border-radius: 1.25rem;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
|
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
|
||||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.activity-card:hover {
|
.activity-card:hover {
|
||||||
transform: translateY(-4px);
|
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 {
|
.card-img-wrap {
|
||||||
@ -480,7 +482,7 @@ function resetFilters() {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 0.9375rem;
|
font-size: 0.9375rem;
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
color: #ffffff;
|
color: var(--text-primary);
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
-webkit-line-clamp: 3;
|
-webkit-line-clamp: 3;
|
||||||
|
|||||||
Reference in New Issue
Block a user