diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-12 16:55:59 +0200 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-12 17:07:12 +0200 | 
| commit | 017d01680a933897df6ddd11d2e081730756250b (patch) | |
| tree | 487170c0a92efa61f82c2d45c0da2a6dfea0ef5d /src/components/organisms/layout/footer.module.scss | |
| parent | 4a6f3dbde9adaa671e622215654a1dd9b329610d (diff) | |
chore: add a Footer component
Diffstat (limited to 'src/components/organisms/layout/footer.module.scss')
| -rw-r--r-- | src/components/organisms/layout/footer.module.scss | 39 | 
1 files changed, 39 insertions, 0 deletions
| diff --git a/src/components/organisms/layout/footer.module.scss b/src/components/organisms/layout/footer.module.scss new file mode 100644 index 0000000..a809d3c --- /dev/null +++ b/src/components/organisms/layout/footer.module.scss @@ -0,0 +1,39 @@ +@use "@styles/abstracts/functions" as fun; +@use "@styles/abstracts/mixins" as mix; + +.wrapper { +  display: flex; +  flex-flow: column wrap; +  gap: var(--spacing-xs); +  place-items: center; +  place-content: center; +  padding: var(--spacing-md) 0 calc(var(--toolbar-size) + var(--spacing-md)); + +  @include mix.media("screen") { +    @include mix.dimensions("sm") { +      flex-flow: row wrap; +      font-size: var(--font-size-sm); +    } +  } +} + +.nav { +  display: flex; +  flex-flow: row wrap; + +  @include mix.media("screen") { +    @include mix.dimensions("sm") { +      &::before { +        content: "\2022"; +        margin-right: var(--spacing-2xs); +      } +    } +  } +} + +.back-to-top { +  position: fixed; +  bottom: calc(var(--toolbar-size, 0px) + var(--spacing-md)); +  right: var(--spacing-md); +  transition: all 0.4s ease-in 0s; +} | 
