From ecfc802e3e123c22fbe7db38300ffbaad4961586 Mon Sep 17 00:00:00 2001 From: hashworks Date: Sat, 16 Dec 2023 22:10:39 +0100 Subject: [PATCH] Make sure background-color of body is white On systems with a dark theme it is not guaranteed that the html/body background-color is white. In that case the canvas will be distorted and fail to remove old elements. This enforces a white background color. --- client/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/client/style.css b/client/style.css index 667f0cc..2e7fc57 100644 --- a/client/style.css +++ b/client/style.css @@ -3,6 +3,7 @@ body, html { margin: 0; padding: 0; height: 100%; + background-color: white; } #container {