fix sidebar group titles css (#6289)
Co-authored-by: Djobbo Maïga <4998293+AlfieGoldson@users.noreply.github.com>
This commit is contained in:
parent
2e362042c2
commit
070942a33a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue