diff --git a/src/components/WikiEntry.astro b/src/components/WikiEntry.astro
index 41d01ff..27487d1 100644
--- a/src/components/WikiEntry.astro
+++ b/src/components/WikiEntry.astro
@@ -4,19 +4,48 @@ import WikiPageEntry from "../types/WikiPageEntry";
const { entry } = Astro.props as { entry: WikiPageEntry };
---
- {entry.title}
+ {entry.children.length > 0 && ▶}{entry.title}
{entry.children.length > 0 && (
-
+
{entry.children.map((child: WikiPageEntry) => )}
)}
\ No newline at end of file
+
+.dropdown-arrow {
+ color: green;
+ margin-right: 0.5rem;
+ text-decoration: none;
+}
+
+.active {
+ color: lime;
+ text-decoration: none;
+}
+
+
\ No newline at end of file
diff --git a/src/pages/game/defenses.astro b/src/pages/game/defenses.astro
index 05857af..08baf5b 100644
--- a/src/pages/game/defenses.astro
+++ b/src/pages/game/defenses.astro
@@ -59,7 +59,7 @@ const planetId = active instanceof SystemManager ? active.data._id : active._id;
{defenses.map(def => <>