From 6d2fbe704aab55770129205dce85c0d17d81eca5 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Wed, 19 Jul 2023 18:36:09 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20group=20fi=20=E2=80=9Cdocs=E2=80=9D=20t?= =?UTF-8?q?ogether?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Matej Focko --- docusaurus.config.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 12d5864..b644460 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -36,7 +36,6 @@ class Subject { type: "doc", docId: `${this.subject}-intro`, docsPluginId: this.subject, - position: "left", label: `${this.subject.toUpperCase()}: ${this.description}`, }; } @@ -133,7 +132,11 @@ const config = { navbar: { title: "mf", items: [ - ...subjects.map((s) => s.navbar()), + { + type: "dropdown", + label: "Additional FI MU materials", + items: subjects.map((s) => s.navbar()), + }, { to: "contributions", label: "Contributions",