From 104464a9123fa4a4d56282a72cc9ab85b2071717 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Wed, 24 Aug 2022 18:32:43 -0400 Subject: [PATCH] Fix padding on the body. --- web/static/app.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/static/app.css b/web/static/app.css index a14f189..d3d0e2e 100644 --- a/web/static/app.css +++ b/web/static/app.css @@ -14,6 +14,7 @@ * limitations under the License. */ @media print { + .no-print, .no-print * { display: none !important; @@ -39,3 +40,7 @@ .destructive { background-color: firebrick !important; } + +body { + padding: 8px; +} \ No newline at end of file