fix select bridge

This commit is contained in:
2026-07-02 19:31:52 +03:00
parent 7535845a86
commit 59750206ab
87 changed files with 1204 additions and 966 deletions

View File

@@ -53,11 +53,30 @@
gap: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
padding: 0 12px;
transition: all 0.2s ease;
transition:
background 0.2s ease,
border-left-color 0.2s ease,
opacity 0.6s ease,
transform 0.6s ease;
cursor: default;
border-left: 2px solid transparent;
position: relative;
z-index: 1;
opacity: 0;
transform: translateY(24px);
}
.right[data-inview] .row {
opacity: 1;
transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
.row {
opacity: 1;
transform: none;
transition: background 0.2s ease, border-left-color 0.2s ease;
}
}
.row[data-last] {