Remove debug logs and fix Google button dark mode
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -81,10 +81,11 @@ export async function auth() {
|
||||
}
|
||||
});
|
||||
|
||||
const isDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
|
||||
google.accounts.id.renderButton(signin, {
|
||||
type: 'standard',
|
||||
size: 'large',
|
||||
theme: 'outline',
|
||||
theme: isDark ? 'filled_black' : 'outline',
|
||||
text: 'sign_in_with',
|
||||
shape: 'rectangular',
|
||||
logo_alignment: 'left'
|
||||
|
||||
Reference in New Issue
Block a user