Move site header layout styles to columns; fix nav spacing

Do a bit of testing on Chrome too.
This commit is contained in:
Eryn Wells 2023-09-30 11:56:45 -07:00
parent 17f576406f
commit 20e76897ff
7 changed files with 141 additions and 129 deletions

View file

@ -3,7 +3,15 @@
<nav class="site bulleted">
{{ with site.Menus.main }}
{{- range . -}}
<li><a {{ if $currentPage.HasMenuCurrent "main" . }} class="active"{{ end }} href="{{ .URL }}"><span>{{ .Name }}</span></a></li>
<li>
<a
{{ if $currentPage.HasMenuCurrent "main" . }}
class="active"
{{ end }}
href="{{ .URL }}">
<span>{{ .Name }}</span>
</a>
</li>
{{- end -}}
{{ end }}
</nav>