Skip to content

Commit

Permalink
fix(layout): minimize contet width
Browse files Browse the repository at this point in the history
  • Loading branch information
noxilixon committed Aug 13, 2024
1 parent d7e47b9 commit 0ba3e0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion layouts/_default/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<div>
{{- partial "header.html" . -}}
</div>
<div class="mb-4 pt-md-0 pt-4" id="content">
<div class="container mb-4 pt-md-0 pt-4" id="content">
{{- block "main" . }}{{- end }}
</div>
{{- partial "footer.html" . -}}
Expand Down
2 changes: 1 addition & 1 deletion layouts/page/single.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{ define "main" }}
<section id="{{ .Title }}"
class="container mt-100 mt-60 justify-content-center mx-auto col-sm-6">
class="mt-100 mt-60 justify-content-center mx-auto col-sm-6">
<h1 class="title fw-bold mb-4">{{ .Title }}</h1>
<p class="text-muted para-desc mb-4 pb-2 mx-auto">{{ .Content | markdownify }}</p>
</section>
Expand Down

0 comments on commit 0ba3e0f

Please sign in to comment.