From f3edc21aab931f5e312f34c59366e778d4c38525 Mon Sep 17 00:00:00 2001 From: Yasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com> Date: Mon, 21 Sep 2026 08:52:34 +0900 Subject: astro.config.mjs, custom.css: サイドバーを4セクションに区切り線で分ける MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - astro.config.mjs: トップレベルを、議会での活動(実績・一般質問・委員会・請願)、 立場と発信(私の方針・メディア掲載)、テーマ(ディスレクシアについて・活動を 支えるツール)、その他(ご支援・コンタクト)の順に並べ替えた - custom.css: セクションの先頭3か所に横線と余白を入れた。nth-child の番号は astro.config.mjs の並び順に対応する --- astro.config.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'astro.config.mjs') diff --git a/astro.config.mjs b/astro.config.mjs index 6506aaf..0f37d34 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -78,8 +78,6 @@ export default defineConfig({ }, ], }, - { label: "私の方針", link: "/policy/" }, - { label: "メディア掲載", link: "/media/" }, { label: "一般質問", collapsed: true, @@ -112,6 +110,8 @@ export default defineConfig({ }, ], }, + { label: "私の方針", link: "/policy/" }, + { label: "メディア掲載", link: "/media/" }, { label: "ディスレクシアについて", collapsed: true, @@ -171,7 +171,6 @@ export default defineConfig({ }, ], }, - { label: "ご支援", link: "/support/" }, { label: "活動を支えるツール", collapsed: true, @@ -186,6 +185,7 @@ export default defineConfig({ }, ], }, + { label: "ご支援", link: "/support/" }, { label: "コンタクト", link: "/contact/" }, ], customCss: ["./src/styles/custom.css"], -- cgit v1.3.1