fix(layout): remplacer la classe de conteneur pour une meilleure gestion des marges

This commit is contained in:
Boris Waaub
2026-02-12 13:58:25 +01:00
parent 793a27b65a
commit ffb90dcb2b
2 changed files with 1 additions and 2 deletions

View File

@@ -1876,7 +1876,6 @@ body {
.container {
margin-left: auto;
margin-right: auto;
max-width: 80rem;
padding-left: 1rem;
padding-right: 1rem;
}

View File

@@ -1,5 +1,5 @@
{{ define "main" }}
<div class="mx-auto px-4 py-8 mb-12 flex-1">
<div class="container mx-auto px-4 py-8 mb-12 flex-1">
<h1 class="text-4xl font-bold text-center mb-5">{{ .Title }}</h1>
{{ with .Params.description }}
<p class="text-center text-gray-500 sm:text-xl mb-5">{{ . | markdownify }}</p>