diff --git a/src/app/canvas/page.jsx b/src/app/canvas/page.jsx index 6f386e8..36844d3 100644 --- a/src/app/canvas/page.jsx +++ b/src/app/canvas/page.jsx @@ -31,7 +31,7 @@ export default function CanvasPage() { {/* */} {/* 캔버스 기본 셋팅 */} - {modalOption.option && } + {/* {modalOption.option && } */} {/* 점·선 그리드 설정 */} {/* {modalOption.gridoption && } */} @@ -42,7 +42,7 @@ export default function CanvasPage() { {/* {modalOption.outerwall && } */} {/* 외벽선 속성 설정 */} - {/* */} + diff --git a/src/components/canvas/modal/propertiessetting/PropertiesSetting.jsx b/src/components/canvas/modal/propertiessetting/PropertiesSetting.jsx index 1f60559..de3f72f 100644 --- a/src/components/canvas/modal/propertiessetting/PropertiesSetting.jsx +++ b/src/components/canvas/modal/propertiessetting/PropertiesSetting.jsx @@ -1,17 +1,30 @@ +import WithDraggable from "@/components/common/draggable/withDraggable"; + export default function PropertiesSetting() { return( -
-
-

外壁のプロパティの設定

- -
-
- s -
- - + +
+
+

外壁のプロパティの設定

+ +
+
+
+ ※属性を変更する外壁線を選択し、軒で設定またはケラバで設定 ボタンをクリックして設定値を適用します。 +
+
+
設定
+
+ + +
+
+
+ + +
-
+ ) } \ No newline at end of file diff --git a/src/styles/_modal.scss b/src/styles/_modal.scss index 6309f50..f7f5dee 100644 --- a/src/styles/_modal.scss +++ b/src/styles/_modal.scss @@ -466,4 +466,51 @@ $alert-color: #101010; background-color: #3D3D3D; border-radius: 2px ; } +} + +.properties-guide{ + font-size: $pop-normal-size; + color: #AAA; + font-weight: $pop-normal-weight; + margin-bottom: 14px; +} + +.properties-setting-wrap{ + .setting-tit{ + font-size: 13px; + color: $pop-color; + font-weight: $pop-bold-weight; + margin-bottom: 10px; + } + .setting-btn-wrap{ + display: flex; + align-items: center; + padding: 14px 0; + border-top: 1px solid #424242; + border-bottom: 1px solid #424242; + .setting-btn{ + display: block; + width: 100%; + height: 40px; + font-size: 13px; + color: #fff; + font-weight: 700; + border-radius: 2px; + transition: all .15s ease-in-out; + &.green{ + background-color: #305941; + border: 1px solid #45CD7D; + &:hover{ + background-color: #3a6b4e; + } + } + &.blue{ + background-color: #2E5360; + border: 1px solid #3FBAE6; + &:hover{ + background-color: #365f6e; + } + } + } + } } \ No newline at end of file