diff options
| -rw-r--r-- | app/print.styl | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/app/print.styl b/app/print.styl index 389c493..c9dfb34 100644 --- a/app/print.styl +++ b/app/print.styl @@ -19,14 +19,16 @@ body { @require "stylesheets/print/projects.styl" @require "stylesheets/print/education.styl" -footer { - display: block - position: fixed - bottom: 0; - font-size: 5pt -} +@supports (-webkit-appearance:none) and (column-fill:auto) and (not (-ms-accelerator:true)) and (not (overflow:-webkit-marquee)) and (not (-moz-appearance:none)) { + footer { + display: block + position: fixed + bottom: 0; + font-size: 5pt + } -footer:after { - color: #F7F7F7 - content: "Disclaimer: generated from https://a14m.me" + footer:after { + color: #F7F7F7 + content: "Disclaimer: generated from https://a14m.me" + } } |
