fix(css): post header margin on mobile

.post-header was not using the `--gap` variable, so the overriding of this variable on mobile was not applied.
This commit is contained in:
David Guillot 2024-07-11 14:32:01 +02:00
parent 3e53621007
commit 0252f45cb4

View File

@ -1,6 +1,6 @@
.page-header,
.post-header {
margin: 24px auto var(--content-gap) auto;
margin: var(--gap) auto var(--content-gap) auto;
}
.post-title {