From 9bcbc66db0fb60255be19ca232cbf166a406b197 Mon Sep 17 00:00:00 2001 From: Dakurei Date: Sun, 25 Aug 2024 00:56:50 +0200 Subject: [PATCH] Change background-color to black if display-mode is fullscreen (#1605) + fullscreen which is the mode defined in manifest.webmanifest --- index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/index.css b/index.css index 3b74867be5f..8034c1a4b38 100644 --- a/index.css +++ b/index.css @@ -17,6 +17,12 @@ body { background: #484050; } +@media (display-mode: fullscreen) { + body { + background: #000000; + } +} + #links { width: 90%; text-align: center;