홈과 관리자 로그인 화면 테마 및 제목 정리

This commit is contained in:
2026-06-29 23:50:32 +09:00
parent 17f7f1d728
commit c8eb6a318c
4 changed files with 118 additions and 126 deletions
+6 -1
View File
@@ -1,8 +1,13 @@
window.taxbaikAdminSession = {
syncRouteClass: function () {
const isLogin = window.location.pathname.toLowerCase().endsWith('/admin/login');
document.documentElement.classList.toggle(
'admin-login-route',
window.location.pathname.toLowerCase().endsWith('/admin/login'));
isLogin);
if (isLogin) {
document.title = '백원숙 세무회계 - 관리자 로그인';
}
},
getViewportWidth: function () {