feat(system3): TKQC 모바일 전용 페이지 구현 및 데스크탑 관리함 반응형 개선

- 모바일 전용 페이지 신규: /m/dashboard, /m/inbox, /m/management
- 공통 모바일 CSS/JS: m-common.css, m-common.js (바텀시트, 바텀네비, 터치 최적화)
- nginx.conf에 /m/ location 블록 추가
- 데스크탑 HTML에 모바일 뷰포트 리다이렉트 추가 (<=768px)
- 데스크탑 관리함 카드 헤더 반응형 레이아웃 (flex-wrap, 1280px 브레이크포인트)
- collapse-content overflow:hidden → overflow:visible 수정 (내용 잘림 해결)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-03-05 13:34:52 +09:00
parent abd7564e6b
commit 9b81a52283
16 changed files with 2952 additions and 73 deletions

View File

@@ -48,6 +48,16 @@ server {
proxy_buffering off;
}
# 모바일 전용 페이지
location /m/ {
alias /usr/share/nginx/html/m/;
try_files $uri $uri/ /m/dashboard.html;
location ~* \.html$ {
expires -1;
add_header Cache-Control "no-store, no-cache, must-revalidate";
}
}
# 업로드 파일
location /uploads/ {
alias /usr/share/nginx/html/uploads/;