From aec2107bcef19b40b5133563a7f56c70a94f00ff Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Tue, 30 Dec 2025 09:35:19 -0800 Subject: [PATCH] Use pill shape and inverted theme for Google button MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- static/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/app.js b/static/app.js index 614a845..c1669e8 100644 --- a/static/app.js +++ b/static/app.js @@ -85,9 +85,9 @@ export async function auth() { google.accounts.id.renderButton(signin, { type: 'standard', size: 'large', - theme: isDark ? 'filled_black' : 'outline', + theme: isDark ? 'outline' : 'filled_black', text: 'sign_in_with', - shape: 'rectangular', + shape: 'pill', logo_alignment: 'left' }); });