From 37e50c14cc7c14da2aabf494abe5880c543a4a57 Mon Sep 17 00:00:00 2001 From: "hyojun.choi" Date: Tue, 29 Jul 2025 16:44:27 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EA=B8=B0=EC=A4=80=20=EC=A2=8C=ED=91=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../floor-plan/modal/circuitTrestle/CircuitTrestleSetting.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/floor-plan/modal/circuitTrestle/CircuitTrestleSetting.jsx b/src/components/floor-plan/modal/circuitTrestle/CircuitTrestleSetting.jsx index f6908913..f7ad4d7c 100644 --- a/src/components/floor-plan/modal/circuitTrestle/CircuitTrestleSetting.jsx +++ b/src/components/floor-plan/modal/circuitTrestle/CircuitTrestleSetting.jsx @@ -127,8 +127,8 @@ export default function CircuitTrestleSetting({ id }) { // roof polygon들의 중간점 계산 const roofPolygons = canvas.getObjects().filter((obj) => obj.name === POLYGON_TYPE.ROOF) let x, y - x = canvas.width / 2 - y = canvas.height / 2 + x = 0 //canvas.width / 2 + y = 1000 //canvas.height / 2 /*if (roofPolygons.length > 0) { let minX = Infinity, -- 2.47.2 From 2b956bbc3b472596f0d7fb93085e1f5d367216b4 Mon Sep 17 00:00:00 2001 From: ysCha Date: Tue, 29 Jul 2025 16:49:06 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[1218]=20WINDOW=EB=A5=BC=20=EC=9D=B4?= =?UTF-8?q?=EB=8F=99=ED=95=A0=20=EB=95=8C=20=EC=9E=A1=EB=8A=94=20=EC=98=81?= =?UTF-8?q?=EC=97=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/_modal.scss | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/styles/_modal.scss b/src/styles/_modal.scss index c90372bf..f62c8592 100644 --- a/src/styles/_modal.scss +++ b/src/styles/_modal.scss @@ -150,7 +150,7 @@ $alert-color: #101010; position: absolute; top: 0; left: 0; - width: 5px; + width: 15px; height: 100%; background-color: #000; cursor: pointer; @@ -159,7 +159,7 @@ $alert-color: #101010; position: absolute; top: 0; right: 0; - width: 5px; + width: 15px; height: 100%; background-color: #000; cursor: pointer; @@ -235,7 +235,7 @@ $alert-color: #101010; .modal-foot{ display: block; width: 100%; - padding: 5px 0; + padding: 15px 0; background-color: #000; cursor: pointer; } @@ -344,7 +344,7 @@ $alert-color: #101010; top: 50%; right: 0; transform: translateY(-50%); - + } } .input-grid{ @@ -646,7 +646,7 @@ $alert-color: #101010; .outline-wrap{ padding: 24px 0; border-top: 1px solid #424242; - + .outline-inner{ display: flex; align-items: center; @@ -666,7 +666,7 @@ $alert-color: #101010; .outline-form{ display: flex; align-items: center; - + span{ width: 60px; flex: none; @@ -1311,7 +1311,7 @@ $alert-color: #101010; width: 200px; height: 200px; border-radius: 50%; - + .circle { position: absolute; width: 10px; @@ -1760,7 +1760,7 @@ $alert-color: #101010; &::-webkit-scrollbar { width: 2px; background-color: transparent; - + } &::-webkit-scrollbar-thumb { background-color: #fff; @@ -1771,7 +1771,7 @@ $alert-color: #101010; } } } - } + } } } @@ -1945,7 +1945,7 @@ $alert-color: #101010; min-height: 80px; background-color: #fff; } - + } // 치수선 설정 @@ -2232,11 +2232,11 @@ $alert-color: #101010; padding-left: 0; padding-bottom: 5px; } - } + } } - } - } -} + } + } +} .keraba-flex{ display: flex; align-items: center; @@ -2321,7 +2321,7 @@ $alert-color: #101010; flex-direction: column; flex: 1; - + } .compas-table-box{ background-color: #3D3D3D; -- 2.47.2