From c44f11a68688487063ffd428b8729694c4477488 Mon Sep 17 00:00:00 2001 From: Paul Brinkmeier Date: Fri, 30 Jun 2023 16:19:59 +0200 Subject: [PATCH] Add smaller font size for print media --- py/jon/templates/base.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/py/jon/templates/base.html b/py/jon/templates/base.html index afa7b0c..735b1f4 100644 --- a/py/jon/templates/base.html +++ b/py/jon/templates/base.html @@ -57,6 +57,11 @@ th { font-size: .8em; } + @media print { + body { + font-size: 8px; + } + }