component refactoring

This commit is contained in:
2026-06-26 08:00:18 +00:00
parent bce9f8663d
commit a7cccbf170
10 changed files with 498 additions and 446 deletions
+14 -5
View File
@@ -171,19 +171,28 @@
-webkit-box-orient: vertical;
overflow: hidden;
// Standard line-clamp (Firefox 122+) — overrides display for supporting browsers
display: block;
line-clamp: 3;
transition: max-height $transition-slow ease, opacity $transition-normal;
&.expanded {
-webkit-line-clamp: unset;
line-clamp: unset;
overflow: visible;
}
}
// Standard line-clamp (Firefox 122+) — overrides WebKit for supporting browsers
@supports (line-clamp: 3) {
.show-description {
display: block;
-webkit-line-clamp: unset;
-webkit-box-orient: unset;
line-clamp: 3;
&.expanded {
line-clamp: unset;
}
}
}
// ── Meta row (host + genre) ────────────────────────────────
.show-meta {