feat(WEB): 폴더블 기기(Galaxy Fold) 레이아웃 대응 및 CEO 대시보드 개선
- AuthenticatedLayout: visualViewport API 추가로 폴더블 기기 화면 전환 감지 - globals.css: CSS 변수(--app-width, --app-height) 및 dvw/dvh fallback 추가 - 모바일 레이아웃: h-screen → var(--app-height)로 변경 - CEO 대시보드 및 API 클라이언트 개선 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
import ComprehensiveAnalysis from '@/components/reports/ComprehensiveAnalysis';
|
||||
'use client';
|
||||
|
||||
import { MainDashboard } from '@/components/business/MainDashboard';
|
||||
|
||||
export default function ComprehensiveAnalysisPage() {
|
||||
return <ComprehensiveAnalysis />;
|
||||
return <MainDashboard />;
|
||||
}
|
||||
@@ -3,6 +3,13 @@
|
||||
:root {
|
||||
--background: #ffffff;
|
||||
--foreground: #171717;
|
||||
|
||||
/* 폴더블 기기 대응 - JS에서 동적으로 업데이트됨 */
|
||||
--app-width: 100vw;
|
||||
--app-height: 100vh;
|
||||
/* dvh/dvw fallback (브라우저 지원 시 자동 적용) */
|
||||
--app-height: 100dvh;
|
||||
--app-width: 100dvw;
|
||||
}
|
||||
|
||||
@theme inline {
|
||||
|
||||
Reference in New Issue
Block a user