From 9e743bc569f4afc7147676fae65fb2a7147095da Mon Sep 17 00:00:00 2001 From: Mark Date: Sat, 18 May 2024 22:25:05 -0400 Subject: [PATCH] fix(style): add CSS reset to remove border, margin, padding --- src/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/style.css b/src/style.css index 1e59cba..fafbbaf 100644 --- a/src/style.css +++ b/src/style.css @@ -1,4 +1,12 @@ +* { + border: 0; + margin: 0; + padding: 0; +} + html, body { + width: 100%; + height: 100%; overflow: hidden; }