diff options
author | Jannis M. Hoffmann <jannis@fehcom.de> | 2024-12-09 16:07:52 +0100 |
---|---|---|
committer | Jannis M. Hoffmann <jannis@fehcom.de> | 2024-12-09 16:07:52 +0100 |
commit | 44b719671fe73b7378789968ecc8d48d7f9c00ca (patch) | |
tree | 5821c945f2aab37771c1beb40ba5d72c768faf8c /scss/my_bulma.scss | |
parent | 1d0edda3f461af086e0287b64dbebe041d04a198 (diff) |
make the footer stick to the bottom
Diffstat (limited to 'scss/my_bulma.scss')
-rw-r--r-- | scss/my_bulma.scss | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/scss/my_bulma.scss b/scss/my_bulma.scss index 01cdc4b..418ade6 100644 --- a/scss/my_bulma.scss +++ b/scss/my_bulma.scss @@ -1,4 +1,5 @@ @use "bulma/bulma"; +@use 'sass:list'; .jwm-new-mail > .media-content { @extend .has-text-weight-semibold; @@ -44,3 +45,23 @@ iframe.jwm-mail-body-text-html { .jwm-mail-body-text-plain { @extend .block; } + +.jwm-page-container { + position: relative; + min-height: 100vh; +} + +.jwm-content { + padding-bottom: + list.nth(bulma.$footer-padding, 1) + + list.nth(bulma.$footer-padding, 3) + + list.nth(bulma.$section-padding, 1) + + 3rem; +} + +.jwm-footer { + position: absolute; + bottom: 0; + width: 100%; + height: auto; +} |