From c1ab82ff558bb662d53cb80800d9d523a7984cdf Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Mon, 5 Jul 2021 14:42:17 +0200 Subject: Show disclaimer only on chrome browsers --- app/print.styl | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'app') 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" + } } -- cgit v1.2.3