diff --git a/src/app/canvas/page.jsx b/src/app/canvas/page.jsx index e4d5089..f0c6dcb 100644 --- a/src/app/canvas/page.jsx +++ b/src/app/canvas/page.jsx @@ -103,7 +103,7 @@ export default function CanvasPage() { {/* {modalOption.outerwall && } */} {/* 외벽선 속성 설정 */} - {/* */} + {/* 지붕형상 설정 */} {/* */} diff --git a/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx b/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx index f9e6e74..5c5c0af 100644 --- a/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx +++ b/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx @@ -18,6 +18,8 @@ export default function PlacementSettingPop(){
+
+
diff --git a/src/components/canvas/modal/propertiessetting/PropertiesSetting.jsx b/src/components/canvas/modal/propertiessetting/PropertiesSetting.jsx index 832efb4..975b8cb 100644 --- a/src/components/canvas/modal/propertiessetting/PropertiesSetting.jsx +++ b/src/components/canvas/modal/propertiessetting/PropertiesSetting.jsx @@ -9,6 +9,8 @@ export default function PropertiesSetting() {
+
+
※属性を変更する外壁線を選択し、軒で設定またはケラバで設定 ボタンをクリックして設定値を適用します。
diff --git a/src/components/publishpage/PublishPage.jsx b/src/components/publishpage/PublishPage.jsx index ae1f56e..854471e 100644 --- a/src/components/publishpage/PublishPage.jsx +++ b/src/components/publishpage/PublishPage.jsx @@ -263,6 +263,7 @@ export default function PublishPage() {
  • 2025-02-13
  • *배치면 초기설정 지붕 각도 설정 수정
  • +
  • *팝업 공통 양 사이드바 추가
diff --git a/src/styles/_modal.scss b/src/styles/_modal.scss index 95db2ea..6c23268 100644 --- a/src/styles/_modal.scss +++ b/src/styles/_modal.scss @@ -142,8 +142,28 @@ $alert-color: #101010; background: url(../../public/static/images/canvas/modal_close.svg)no-repeat center; } } + .modal-body{ + position: relative; padding: 24px; + .left-bar{ + position: absolute; + top: 0; + left: 0; + width: 5px; + height: 100%; + background-color: #000; + cursor: pointer; + } + .right-bar{ + position: absolute; + top: 0; + right: 0; + width: 5px; + height: 100%; + background-color: #000; + cursor: pointer; + } .modal-btn-wrap{ display: flex; align-items: center; @@ -524,7 +544,7 @@ $alert-color: #101010; align-items: center; gap: 10px; &.place{ - gap: 15px; + gap: 33px; .outline-form{ span{ width: fit-content;
2024-10-28