css: lower space between menu and content on desktop

This commit is contained in:
Corentin 2024-05-19 17:55:23 +02:00
parent d75cc5134f
commit 2a86db76bc
1 changed files with 7 additions and 1 deletions

View File

@ -1,9 +1,15 @@
.content { .content {
margin: 2em auto 0 auto; margin: -60px auto 0 auto;
padding: 0 var(--space-small); padding: 0 var(--space-small);
max-width: 1100px; max-width: 1100px;
} }
@media (max-width: 768px) {
.content {
margin-top: 0;
}
}
/* Sections */ /* Sections */
.section { .section {