From 8a9300866b6093e0f18c5be3287c35ee4a6226aa Mon Sep 17 00:00:00 2001 From: Sebastian Castro Date: Sun, 5 Apr 2020 18:56:21 +0200 Subject: [PATCH] css: make box-sizing border-box by default everywhere --- src/static/css/pad.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/static/css/pad.css b/src/static/css/pad.css index f1e12d2a..a6267700 100644 --- a/src/static/css/pad.css +++ b/src/static/css/pad.css @@ -16,6 +16,9 @@ html { line-height: 16px; color: #3e3e3e; } +html, *, *:after, *:before { + box-sizing: border-box; +} *, p { margin: 0; padding: 0;