fix background on card & delete overflow-x

This commit is contained in:
kelen-dev 2025-06-03 15:28:42 +02:00
parent ba7eb5f976
commit 79e65186dc

View file

@ -624,7 +624,8 @@
height: 500px; height: 500px;
color: white; color: white;
text-align: center; text-align: center;
overflow: auto; overflow-y: auto;
overflow-x: hidden;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding: 20px; padding: 20px;
@ -643,6 +644,7 @@
transform: translateY(-2px); transform: translateY(-2px);
/* Léger lift au hover */ /* Léger lift au hover */
border: 2px solid rgba(212, 175, 55, 0.6); border: 2px solid rgba(212, 175, 55, 0.6);
background: var(--card-gradient) !important;
} }
.weapon-card:before, .weapon-card:before,
@ -673,8 +675,6 @@
.weapon-card:hover:before, .weapon-card:hover:before,
.diplomes-card:hover:before { .diplomes-card:hover:before {
background:
var(--card-gradient);
animation: metalShine 2s ease-in-out infinite alternate; animation: metalShine 2s ease-in-out infinite alternate;
} }