From 3e896d7326cd573dc39b64a3ea1d987cb42aad67 Mon Sep 17 00:00:00 2001 From: s-ol Date: Sat, 26 Oct 2019 15:56:09 +0200 Subject: print css fix --- scss/_browser.scss | 5 +++++ scss/_footer.scss | 6 ++++++ 2 files changed, 11 insertions(+) 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; -- cgit v1.2.3