We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54642e4 commit ef0c073Copy full SHA for ef0c073
src/css/nav.css
@@ -238,6 +238,7 @@ html.is-clipped--nav {
238
239
.nav-panel-explore .component .title {
240
font-weight: var(--body-font-weight-bold);
241
+ color: inherit;
242
}
243
244
.nav-panel-explore .versions {
src/partials/nav-explore.hbs
@@ -8,7 +8,7 @@
8
<ul class="components">
9
{{#each site.components}}
10
<li class="component{{#if (eq this @root.page.component)}} is-current{{/if}}">
11
- <span class="title">{{{./title}}}</span>
+ <a class="title" href="{{{relativize ./url}}}">{{{./title}}}</a>
12
<ul class="versions">
13
{{#each ./versions}}
14
<li class="version
0 commit comments