From cb40b7c3bbed5758ec3f33424e7a573c9565a5a0 Mon Sep 17 00:00:00 2001 From: blankie Date: Fri, 1 Mar 2024 11:22:07 +1100 Subject: [PATCH] Add right margin for output box --- public/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/style.css b/public/style.css index c755d99..b21b384 100644 --- a/public/style.css +++ b/public/style.css @@ -1,6 +1,9 @@ html:has(dialog[open]) { overflow: hidden; } +body { + margin: 8px; +} /* prevent table from wrapping when contents are too long */ table { min-width: max-content; @@ -66,5 +69,5 @@ th input[type=text] { } #output { - width: 100%; + width: calc(100% - 8px); }