diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-05-17 22:48:41 +0200 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-05-17 22:48:41 +0200 | 
| commit | 271ef6debaca7ed9a01829dcef3a37e90a2dff05 (patch) | |
| tree | aa1513b40e7020a44cfcaaedc3a33d39ecfb8af7 /src/components/templates/layout/layout.module.scss | |
| parent | 4e53a8654441481029746ff4e35a4a19c8d83709 (diff) | |
chore: use persistent layout
It prevents to rerender the common components between pages (header,
footer...).
Diffstat (limited to 'src/components/templates/layout/layout.module.scss')
| -rw-r--r-- | src/components/templates/layout/layout.module.scss | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/src/components/templates/layout/layout.module.scss b/src/components/templates/layout/layout.module.scss index 09904dc..1080732 100644 --- a/src/components/templates/layout/layout.module.scss +++ b/src/components/templates/layout/layout.module.scss @@ -1,5 +1,6 @@  @use "@styles/abstracts/functions" as fun;  @use "@styles/abstracts/mixins" as mix; +@use "@styles/abstracts/placeholders";  .header {    border-bottom: fun.convert-px(3) solid var(--color-border-light); @@ -9,6 +10,19 @@    flex: 1;  } +.article { +  &--grid { +    @extend %grid; + +    grid-auto-flow: column dense; +    align-items: baseline; +  } + +  &--padding { +    padding-bottom: var(--spacing-lg); +  } +} +  .footer {    border-top: fun.convert-px(3) solid var(--color-border-light);  } | 
