diff options
| author | William Hergès <william@herges.fr> | 2025-10-28 14:08:02 +0100 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-10-28 14:08:02 +0100 |
| commit | 615eecc6345859e6a6667fe73db7b27bfc2f173a (patch) | |
| tree | 13adbc23e041204567c88977930a69e1664706fe | |
| parent | f4566cc11de58342265b8db3443ea2eaf667d11c (diff) | |
feat(frontend): space between section introduction and articles
| -rw-r--r-- | frontend/scss/home.scss | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/frontend/scss/home.scss b/frontend/scss/home.scss index 075896e..9e50385 100644 --- a/frontend/scss/home.scss +++ b/frontend/scss/home.scss @@ -8,11 +8,11 @@ gap: calc(1.5 * var(--margin-header)); } -article article { - margin-bottom: var(--margin-header); - &:last-child { - margin-bottom: 0; - } +section > article { + display: flex; + flex-direction: column; + gap: var(--margin-base); + margin-top: var(--margin-header); } .pagination { |
