aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Djobbo-Victor <4998293+djobbo@users.noreply.github.com> 2023-03-09 10:48:55 +0100
committerGravatar GitHub <noreply@github.com> 2023-03-09 17:48:55 +0800
commit070942a33a90f6b0b7d8b0dd195364dbdb2c8cd7 (patch)
tree2781d591adc0fddf937ef9ddefa91431cc587f0c
parent2e362042c222298fd6cd80a64c1d7b7f3f608a79 (diff)
downloadastro-070942a33a90f6b0b7d8b0dd195364dbdb2c8cd7.tar.gz
astro-070942a33a90f6b0b7d8b0dd195364dbdb2c8cd7.tar.zst
astro-070942a33a90f6b0b7d8b0dd195364dbdb2c8cd7.zip
fix sidebar group titles css (#6289)
Co-authored-by: Djobbo Maïga <4998293+AlfieGoldson@users.noreply.github.com>
-rw-r--r--examples/docs/src/components/LeftSidebar/LeftSidebar.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/docs/src/components/LeftSidebar/LeftSidebar.astro b/examples/docs/src/components/LeftSidebar/LeftSidebar.astro
index 22fa5bbde..128fc0dac 100644
--- a/examples/docs/src/components/LeftSidebar/LeftSidebar.astro
+++ b/examples/docs/src/components/LeftSidebar/LeftSidebar.astro
@@ -20,7 +20,7 @@ const sidebar = SIDEBAR[langCode];
Object.entries(sidebar).map(([header, children]) => (
<li>
<div class="nav-group">
- <h2>{header}</h2>
+ <h2 class="nav-group-title">{header}</h2>
<ul>
{children.map((child) => {
const url = Astro.site?.pathname + child.link;