From fc1f9c67bd1cd61fbda751c3860bd272256f94d6 Mon Sep 17 00:00:00 2001 From: Sijmen Date: Thu, 27 Apr 2023 14:25:49 +0200 Subject: [PATCH] Change box-sizing to border-box --- static/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/style.css b/static/style.css index 4b60509..ca9b900 100644 --- a/static/style.css +++ b/static/style.css @@ -1,3 +1,7 @@ +* { + box-sizing: border-box; +} + html { height: 100%; }