diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-12-20 23:11:08 +0100 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-12-20 23:11:08 +0100 | 
| commit | 6092ad0c91e0dc268e5988174db87ded14e6c931 (patch) | |
| tree | dd3fc56ae9bde5aa4796bc3889927f55e411dc59 /src/components/Footer | |
| parent | 168ed3215f659d44215fd02ac05cc1fe58be4e06 (diff) | |
chore: move toolbar size to global scope
It allows me to manage footer padding on small viewports.
Diffstat (limited to 'src/components/Footer')
| -rw-r--r-- | src/components/Footer/Footer.module.scss | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/components/Footer/Footer.module.scss b/src/components/Footer/Footer.module.scss index 496044a..b5d098d 100644 --- a/src/components/Footer/Footer.module.scss +++ b/src/components/Footer/Footer.module.scss @@ -4,5 +4,5 @@    place-items: center;    place-content: center;    gap: var(--spacing-xs); -  padding: var(--spacing-md) 0; +  padding: var(--spacing-md) 0 calc(var(--toolbar-size) + var(--spacing-md));  } | 
