From fcdd9da3bd12985a5e70dc6693752d120e9f984b Mon Sep 17 00:00:00 2001
From: Jens Cornelsen <79703163+IB-Cornelsen@users.noreply.github.com>
Date: Sat, 7 Dec 2024 02:52:37 +0100
Subject: [PATCH] Filter
---
src/pages/faq/index.astro | 75 +++++++++++++++++++++++++++++++++++++++
1 file changed, 75 insertions(+)
diff --git a/src/pages/faq/index.astro b/src/pages/faq/index.astro
index 800b48de..c4ed51af 100644
--- a/src/pages/faq/index.astro
+++ b/src/pages/faq/index.astro
@@ -5,6 +5,67 @@ import Layout from "#layouts/Layout.astro";
---
+
+
+
+
+
FAQ – Sammlung
@@ -359,6 +420,20 @@ import Layout from "#layouts/Layout.astro";
&__tag:hover {
@apply shadow-md;
}
+
+ &__tag--active {
+ @apply bg-blue-300 text-blue-900 font-bold;
+ }
}
+
+.faq__section {
+ @apply hidden mt-4;
+
+ &--visible {
+ @apply block;
+ }
+}
+
+
\ No newline at end of file