diff options
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; +} |