website: set (or change) max width of content to 80em specifically

TorchedSammy 2022-12-10 14:54:08 -04:00
parent 8975ee8d2c
commit dc4343c562
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
2 changed files with 2 additions and 4 deletions

View File

@ -14,7 +14,7 @@
</ul> </ul>
</div> </div>
</div> </div>
<div class="col"> <div class="col" style="max-width: 80em; margin: auto;">
<div> <div>
<h1>{{ .Title }}</h1> <h1>{{ .Title }}</h1>
{{.Content}} {{.Content}}

View File

@ -1,8 +1,6 @@
{{ define "main" }} {{ define "main" }}
<main> <main style="max-width: 80em; margin: auto;">
<div class="container my-5">
{{.Content}} {{.Content}}
</div>
</main> </main>
{{ end }} {{ end }}