릴리스: v1.2.63 메인 영역 잘림과 셸 높이 계산 보정

This commit is contained in:
2026-03-31 15:36:01 +09:00
parent 40a8dac7b6
commit f6dc64dfc8
2 changed files with 5 additions and 5 deletions

View File

@@ -416,7 +416,6 @@ function submitGlobalSearch() {
<style scoped>
.appShell {
min-height: 100dvh;
height: 100dvh;
display: grid;
grid-template-columns: var(--left-rail-width, 248px) minmax(0, 1fr) var(--right-rail-width, 320px);
background: rgba(14, 14, 14, 0.96);
@@ -431,7 +430,6 @@ function submitGlobalSearch() {
.leftRail,
.rightRail {
min-height: 100dvh;
height: 100dvh;
border-right: 1px solid rgba(255, 255, 255, 0.08);
background: rgba(14, 14, 14, 0.92);
box-sizing: border-box;
@@ -790,7 +788,7 @@ function submitGlobalSearch() {
.appMain {
min-width: 0;
min-height: 100dvh;
min-height: 0;
box-sizing: border-box;
background: rgba(18, 18, 18, 0.98);
border-left: 1px solid rgba(255, 255, 255, 0.08);
@@ -806,7 +804,6 @@ function submitGlobalSearch() {
grid-template-rows: 56px minmax(0, 1fr);
gap: 0;
min-height: 100dvh;
height: 100dvh;
}
.workspace--localRail {
@@ -1007,7 +1004,6 @@ function submitGlobalSearch() {
@media (max-width: 860px) {
.appShell {
grid-template-columns: 1fr;
height: auto;
min-height: 100dvh;
}