For the complete documentation index, see llms.txt. This page is also available as Markdown.

v3.0.6(Hotfix)

To resolve the inconsistent font weight in the mobile menu, please manually update the style file as follows:

File Path: assets/component-header-drawer.css

Modification: Locate the selector: .menu-drawer-nav .menu-drawer-menu .menu-drawer-menu-item.header-menu-first-level summary.first-level-item > a

Replace it with the following code:

.menu-drawer-nav .menu-drawer-menu .menu-drawer-menu-item.header-menu-first-level summary.first-level-item {
  font-weight: var(--font-body-weight-bold);
}
.menu-drawer-nav .menu-drawer-menu .menu-drawer-menu-item.header-menu-first-level a.first-level-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

Last updated