From 8010b7e39d592d14220bdddd9d77e862c53d7825 Mon Sep 17 00:00:00 2001 From: David Darnes Date: Mon, 18 Jan 2021 17:33:57 +0000 Subject: [PATCH] Create print styles file Currently there a no print styles at all in this theme. This would really help anyone who is using the theme for paperwork that may get printed or turned into a PDF --- _sass/_print.scss | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 _sass/_print.scss diff --git a/_sass/_print.scss b/_sass/_print.scss new file mode 100644 index 000000000..f4eff98a9 --- /dev/null +++ b/_sass/_print.scss @@ -0,0 +1,5 @@ +@media print { + a:after { + content: " (" attr(href) ")"; + } +}