Add margin-bottom to content divs

master
Will Faught 3 years ago
parent d9274b65cb
commit f8a8ff1c0d

@ -29,6 +29,11 @@
{{ if templates.Exists "partials/head.html" }} {{ if templates.Exists "partials/head.html" }}
{{ partial "head" . }} {{ partial "head" . }}
{{ end }} {{ end }}
<style>
#content div {
margin-bottom: 1rem;
}
</style>
</head> </head>
<body class="d-flex flex-column"> <body class="d-flex flex-column">
<div class="container flex-fill"> <div class="container flex-fill">

@ -32,7 +32,7 @@
{{ end }} {{ end }}
{{ if .Content }} {{ if .Content }}
<div class="justify-content-center row"> <div class="justify-content-center row">
<div class="col col-auto"> <div class="col col-auto" id="content">
<div style="max-width:66ch"> <div style="max-width:66ch">
{{ .Content }} {{ .Content }}
</div> </div>

Loading…
Cancel
Save