This commit is contained in:
Tomas Dvorak
2025-10-17 17:39:11 +02:00
parent 35d0954afd
commit e9a63073e5
61 changed files with 3824 additions and 1061 deletions
+8 -7
View File
@@ -808,27 +808,28 @@ html {
display: flex;
gap: 18px;
overflow-x: auto;
padding: 8px 2px 12px 2px;
cursor: grab;
padding: 8px 2px 16px 2px;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
}
.matches-slider .matches-track::-webkit-scrollbar {
height: 8px;
height: 12px;
}
.matches-slider .matches-track::-webkit-scrollbar-track {
background: var(--bg-soft);
border-radius: 999px;
margin: 0 12px;
}
.matches-slider .matches-track::-webkit-scrollbar-thumb {
background: var(--light-gray);
background: linear-gradient(90deg, var(--primary), color-mix(in srgb, var(--primary) 80%, var(--secondary) 20%));
border-radius: 999px;
transition: background 0.2s;
transition: all 0.3s ease;
border: 2px solid var(--bg-soft);
}
.matches-slider .matches-track::-webkit-scrollbar-thumb:hover {
background: color-mix(in srgb, var(--primary) 40%, var(--light-gray));
background: linear-gradient(90deg, color-mix(in srgb, var(--primary) 120%, #000), var(--primary));
transform: scaleY(1.1);
}
.matches-slider .matches-track:active { cursor: grabbing; }
.match-card {
flex: 0 0 auto;
min-width: 340px;