fix menu layout

This commit is contained in:
aethrvmn 2024-11-10 22:22:13 +01:00
parent 276a06be9d
commit 107416cd7f
3 changed files with 35 additions and 14 deletions

View file

@ -1,3 +1,20 @@
/* You can add custom styles here. */
// @import "plugins/numbered";
.book-menu-content nav {
display: flex;
flex-direction: column;
height: 99%;
}
.book-brand {
margin: 0;
}
.book-search {
margin: 0;
}
.book-menu-mid {
margin-top: -1rem;
flex-grow: 1;
}

View file

@ -5,4 +5,5 @@
{{- end -}}
<span>{{ .Site.Title }}</span>
</a>
<hr>
</h2>

View file

@ -2,19 +2,22 @@
{{ partial "docs/brand" . }}
{{ partial "docs/search" . }}
<div class="book-menu-top">
{{ partial "docs/inject/menu-before" . }}
{{ partial "docs/menu-hugo" .Site.Menus.before }}
</div>
<div class="book-menu-mid">
{{ if .Site.Params.BookMenuBundle }}
{{ partial "docs/menu-bundle" . }}
{{ else }}
{{ partial "docs/menu-filetree" . }}
{{ end }}
</div>
<div style="bottom:0; position:fixed;">
{{ partial "docs/menu-hugo" .Site.Menus.after }}
<div class="book-menu-bot">
{{ partial "docs/inject/menu-after" . }}
{{ partial "docs/menu-hugo" .Site.Menus.after }}
</div>
</nav>