spin-frontend/index.html
theorose49 e3b5a874b3
All checks were successful
build-and-push / build (push) Successful in 31s
feat: 전 화면 반응형(모바일) + 인턴 직급 + 초과근무 탭 제거 + 로그아웃 URL + 로고 정렬
- 모바일 셸: 하단 탭바 + 더보기 드로어, 사이드바/탑바 반응형, safe-area, 폼/모달/테이블 반응형
- 근무: 유저 초과근무 탭 제거(관리자만 집계), 승인 관리 초과근무 섹션 제거
- 직급 인턴 추가, 직책 필드 제거, 부서는 관리자 설정→드롭다운(기존)
- 로그아웃: /me의 LOGOUT_URL 사용(SSO 완전 로그아웃), 회사 로고 가운데 정렬
- 디바이스 등록(FCM)·계정 메뉴·계정 설정 (이전 커밋 포함)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-28 10:55:54 +09:00

25 lines
1.0 KiB
HTML

<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/spin.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#03143F" />
<title>spin · Special Partners</title>
<!-- spin Flutter 셸은 UA에 "spinApp"을 포함 → 앱 전용 보정(노치 safe-area 등) 클래스 부여 -->
<script>
if (/spinApp/i.test(navigator.userAgent)) document.documentElement.classList.add("spin-app");
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lora:wght@500;600;700&family=Noto+Sans+KR:wght@400;500;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>