v0.0.49 데스크톱 3단 스크롤 — 사이드 푸터 고정

그리드 높이를 뷰포트에 맞추고 중앙만 스크롤해 좌우 사이드 하단이 항상 보이도록 한다.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-08 09:59:35 +09:00
parent 082c6a9619
commit 4704748582
10 changed files with 43 additions and 22 deletions

View File

@@ -72,6 +72,8 @@
@layer components {
.site-shell {
display: flex;
flex-direction: column;
min-height: 100vh;
color: var(--site-text);
background: var(--site-bg);
@@ -103,7 +105,7 @@
}
.site-main {
min-height: calc(100vh - 57px);
min-height: 0;
border-left: 1px solid var(--site-line);
border-right: 1px solid var(--site-line);
background: var(--site-bg);
@@ -114,7 +116,7 @@
}
.site-sidebar {
min-height: calc(100vh - 57px);
min-height: 0;
background: var(--site-panel);
color: var(--site-text);
}