From fb0b49bf6022d5d927304316965a87de100fb131 Mon Sep 17 00:00:00 2001 From: umsangdon Date: Mon, 31 Aug 2026 10:35:13 +0900 Subject: [PATCH] =?UTF-8?q?fix(B07):=20=EB=AA=85=EB=A0=B9=ED=96=89=20?= =?UTF-8?q?=ED=86=A0=EA=B8=80=EC=9D=B4=20=EC=A2=8C=EC=B8=A1=20=EC=86=8D?= =?UTF-8?q?=EC=84=B1=20=ED=8C=A8=EB=84=90=20=EB=86=92=EC=9D=B4=EB=A5=BC=20?= =?UTF-8?q?=ED=9D=94=EB=93=A4=EC=A7=80=20=EC=95=8A=EA=B2=8C=20=ED=95=9C?= =?UTF-8?q?=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .cad-inspector의 bottom이 --cad-command-height를 포함해서, 상태막대의 [명령행] 토글이 좌측 팔레트 높이까지 함께 바꿨다. 좌측 패널이 상위이므로 상태막대까지 내려 명령행 표시 여부와 무관하게 만든다. Co-Authored-By: Claude Opus 5 (1M context) --- B07_DesignDetail/openwebcad/src/App.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/B07_DesignDetail/openwebcad/src/App.css b/B07_DesignDetail/openwebcad/src/App.css index 264f6190..bf5f6458 100644 --- a/B07_DesignDetail/openwebcad/src/App.css +++ b/B07_DesignDetail/openwebcad/src/App.css @@ -367,7 +367,8 @@ body > canvas[data-id="canvas"] { position: fixed; z-index: 3; top: calc(var(--cad-title-height) + var(--cad-ribbon-height)); - bottom: calc(var(--cad-command-height) + var(--cad-status-height)); + /* 좌측 팔레트가 상위 — 명령행 토글에 높이가 흔들리지 않게 상태막대까지 내린다 */ + bottom: var(--cad-status-height); left: 0; width: var(--cad-panel-width); background: var(--cad-chrome);