From dbe621b909c798c5dc8165be7425215c325e48cb Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Mon, 16 Feb 2026 09:58:39 -0800 Subject: [PATCH] Fix Google sign-in button white box in dark mode --- static/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/static/app.js b/static/app.js index f275b5f..b99eabe 100644 --- a/static/app.js +++ b/static/app.js @@ -90,6 +90,7 @@ export async function init() { const signin = document.getElementById('signin'); signin.style.display = 'flex'; + signin.style.colorScheme = 'light'; document.body.style.opacity = 1; profile = await new Promise((resolve) => {