From af17da0ca86891cdf172be69a0ccb0479bdf4053 Mon Sep 17 00:00:00 2001 From: Thomas Dehaeze Date: Thu, 26 Nov 2020 19:56:05 +0100 Subject: [PATCH] Add border-box by default --- scss/partials/_reset.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scss/partials/_reset.scss b/scss/partials/_reset.scss index e1dd72e..24862cd 100644 --- a/scss/partials/_reset.scss +++ b/scss/partials/_reset.scss @@ -17,6 +17,13 @@ body { ol, ul { list-style: none; } +* { + box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; +} + + blockquote, q { quotes: none; }