diff --git a/frontend/docs/mustpass/stack-navigation.md b/frontend/docs/mustpass/stack-navigation.md
index 36c61de..8b0f923 100644
--- a/frontend/docs/mustpass/stack-navigation.md
+++ b/frontend/docs/mustpass/stack-navigation.md
@@ -78,4 +78,9 @@
## 데스크톱
-- [ ] PC 뷰포트에서도 화면·슬라이드 전환이 가운데 `max-w-md`(448px) 컨테이너 안에서만 일어난다.
+- [ ] `lg` 미만에서는 가운데 `max-w-md`(448px) 캔버스와 하단 5슬롯 내비게이션이 유지된다.
+- [ ] `lg` 이상에서는 앱 캔버스가 최대 1440px까지 확장되고, 홈·몽글라인·사람·설정과
+ 기록 작성 슬롯이 같은 순서의 좌측 내비게이션으로 표시된다.
+- [ ] PC의 홈은 소개/기간과 관계 지도가 2열로, 몽글라인은 활동 흐름/필터와 피드가 2열로
+ 표시되며 가로 넘침 없이 각각 스크롤·조작할 수 있다.
+- [ ] 상세·설정·기록 작성·사람 등록 화면은 넓은 캔버스에서도 읽기 좋은 중앙 폭을 유지한다.
diff --git a/frontend/src/components/home/relation-force-map.tsx b/frontend/src/components/home/relation-force-map.tsx
index 86bf8dd..1e72ce4 100644
--- a/frontend/src/components/home/relation-force-map.tsx
+++ b/frontend/src/components/home/relation-force-map.tsx
@@ -152,7 +152,7 @@ export function RelationForceMap({
return (
{
if (event.button !== 0) return
if (isPersonNodeTarget(event.target)) return
diff --git a/frontend/src/components/timeline/timeline-event-card.tsx b/frontend/src/components/timeline/timeline-event-card.tsx
index 8421ad2..9d146e8 100644
--- a/frontend/src/components/timeline/timeline-event-card.tsx
+++ b/frontend/src/components/timeline/timeline-event-card.tsx
@@ -94,7 +94,7 @@ export function TimelineEventCard({ item }: { item: TimelineEventCardItem }) {