feat: add darkblue theme, refactor dark theme

This commit is contained in:
pa
2025-08-03 21:59:40 +09:00
committed by Natsumi
parent 4e64177722
commit 2fea5f25b9
14 changed files with 890 additions and 502 deletions

View File

@@ -449,6 +449,12 @@ export const useAuthStore = defineStore('Auth', () => {
type: 'info',
callback: (action) => {
if (action === 'confirm') {
const existingStyle = document.getElementById(
'login-container-style'
);
if (existingStyle) {
existingStyle.parentNode.removeChild(existingStyle);
}
handleLogoutEvent();
}
}