don't show collapsable sections that are empty

This commit is contained in:
isUnknown 2024-09-18 17:47:07 +02:00
parent b0142b4c21
commit 7c4e5d52b8
2 changed files with 20 additions and 16 deletions

View file

@ -220,7 +220,7 @@ img.show {
.main-nav a,
.main-footer a,
.hero__text a,
.collapsable__content a {
.collapsable__content a:not(.ticket-link) {
display: block;
scale: 1;
transition: scale 0.5s var(--curve-quick);
@ -239,7 +239,7 @@ img.show {
.main-nav a:hover,
.main-footer a:hover,
.hero__text a:hover,
.collapsable__content a:hover,
.collapsable__content a:not(.ticket-link):hover,
.anchors-strip a:hover {
scale: var(--scale-up);
}