Merge pull request #12138 from ethereum/docs-fix-index-link-appearance

Fix index link appearance in docs menu
This commit is contained in:
chriseth
2021-10-14 15:13:20 +02:00
committed by GitHub
2 changed files with 12 additions and 2 deletions
+7 -1
View File
@@ -74,4 +74,10 @@ html.transition *:before,
html.transition *:after {
transition: ease-in-out 200ms !important;
transition-delay: 0 !important;
}
}
nav.wy-nav-side {
/* The default padding of 2em is too small and the "Keyword Index" link gets obscured
* by the version toggle. */
padding-bottom: 3em;
}
+5 -1
View File
@@ -2,5 +2,9 @@
{% block menu %}
{{ super() }}
<a href="{{ pathto('genindex') }}">Keyword Index</a>
<ul>
<li>
<a href="{{ pathto('genindex') }}">Keyword Index</a>
</li>
</ul>
{% endblock %}