> For the complete documentation index, see [llms.txt](https://ascent.webvista.studio/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ascent.webvista.studio/others/version-upgrade-notes/v3.0.6-hotfix.md).

# 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;
}
```
