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 1d9039f commit c3bd3c7Copy full SHA for c3bd3c7
assets/css/main.css
@@ -260,15 +260,15 @@ header {
260
align-items: center;
261
justify-content: center;
262
}
263
- nav {
+ #menu-header {
264
width: 100%;
265
/* visibility: hidden; */
266
max-height: 0;
267
268
transition: max-height .8s ease-in-out;
269
overflow: hidden;
270
271
- input[type=checkbox]:checked + nav {
+ input[type=checkbox]:checked + #menu-header {
272
visibility: visible;
273
max-height: 100vh;
274
layouts/partials/menu.html
@@ -11,7 +11,7 @@
11
{{- $menuID := .menuID }}
12
13
{{- with index site.Menus $menuID }}
14
- <nav>
+ <nav id="menu-header">
15
<ul>
16
{{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }}
17
</ul>
0 commit comments