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 committed by GitHub
parent 9ea3bb0e1f
commit bd268d161c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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 {