diff options
| author | Ahmed Abdelhalim <[email protected]> | 2021-07-05 14:42:17 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2021-07-05 14:42:17 +0200 |
| commit | c1ab82ff558bb662d53cb80800d9d523a7984cdf (patch) | |
| tree | 460cdac79b7ec1bf300f04591d7daa80a90e9c67 /app | |
| parent | 13f6a6fac32aad4bf6d3e2a18fb1615d6c41dab5 (diff) | |
Show disclaimer only on chrome browsers
Diffstat (limited to 'app')
| -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" + } } |
