From 9357f82ef984afb85575adaba4e2d7d07fe2260d Mon Sep 17 00:00:00 2001 From: Marius Lindvall Date: Thu, 28 Nov 2019 00:17:45 +0100 Subject: [PATCH] Fix styling when using custom colors in browser --- frontend/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/style.css b/frontend/style.css index 1ca2700..e4cc5cd 100644 --- a/frontend/style.css +++ b/frontend/style.css @@ -5,6 +5,12 @@ font-family: sans-serif; } +/* Override browser-specific defaults. */ +body { + background-color: #fff; + color: #000; +} + .hidden { display: none; }