fix: PC 레이아웃 — 사이드바를 좌측 상단까지 확장, 헤더는 우측 영역만

- App.vue 그리드 'top top' → 'left top' (사이드바가 헤더 행까지 차지)
- 사이드바 브랜드 영역 높이 56px 로 헤더와 정렬(보더 일치)
- 모바일은 기존 드로어 구조 유지

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ByungCheol
2026-06-27 23:49:02 +09:00
parent 5bfa45ed30
commit 85670a1b9f
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ watch(() => route.fullPath, () => ui.closeSidebar())
.layout {
display: grid;
grid-template-areas:
'top top'
'left top'
'left body'
'bottom bottom';
grid-template-columns: 220px 1fr;