diff options
| author | Yasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com> | 2026-09-21 08:52:34 +0900 |
|---|---|---|
| committer | Yasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com> | 2026-09-21 08:52:34 +0900 |
| commit | f3edc21aab931f5e312f34c59366e778d4c38525 (patch) | |
| tree | 2cce17906fd7e780b2738a38193d8630bedd628b /astro.config.mjs | |
| parent | 45278001f89a92e8ba1f39179a62f6224cf2996d (diff) | |
astro.config.mjs, custom.css: サイドバーを4セクションに区切り線で分ける
- astro.config.mjs: トップレベルを、議会での活動(実績・一般質問・委員会・請願)、
立場と発信(私の方針・メディア掲載)、テーマ(ディスレクシアについて・活動を
支えるツール)、その他(ご支援・コンタクト)の順に並べ替えた
- custom.css: セクションの先頭3か所に横線と余白を入れた。nth-child の番号は
astro.config.mjs の並び順に対応する
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 6 |
1 files changed, 3 insertions, 3 deletions
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"], |
