diff options
| -rw-r--r-- | scss/_browser.scss | 5 | ||||
| -rw-r--r-- | scss/_footer.scss | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/scss/_browser.scss b/scss/_browser.scss index 2bfc73e..b9910e8 100644 --- a/scss/_browser.scss +++ b/scss/_browser.scss @@ -47,6 +47,11 @@ position: sticky; top: 0; + @media print { + position: relative; + display: none; + } + display: flex; flex: 0 0 auto; flex-wrap: wrap; diff --git a/scss/_footer.scss b/scss/_footer.scss index 3cc3f5a..727ebda 100644 --- a/scss/_footer.scss +++ b/scss/_footer.scss @@ -4,6 +4,12 @@ footer { position: sticky; bottom: 0; + + @media print { + position: absolute; + display: none; + } + color: $gray-bright; background: $gray-dark; |
