diff --git a/src/app/canvas/page.jsx b/src/app/canvas/page.jsx
index beb34ed..8987d29 100644
--- a/src/app/canvas/page.jsx
+++ b/src/app/canvas/page.jsx
@@ -89,7 +89,7 @@ export default function CanvasPage() {
{/* */}
{/* 배치면 초기 설정 */}
- {/* */}
+
{/* 캔버스 기본 셋팅 */}
{/* {modalOption.option && } */}
diff --git a/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx b/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx
index 85dd262..566dd9c 100644
--- a/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx
+++ b/src/components/canvas/modal/placementsetting/PlacementSettingPop.jsx
@@ -29,7 +29,11 @@ export default function PlacementSettingPop(){
| 図面の作成方法 |
- 寸法入力による物品作成 |
+
+
+ 寸法入力による物品作成 ※数字は[半角]入力のみ可能です。
+
+ |
|
diff --git a/src/styles/_modal.scss b/src/styles/_modal.scss
index 9fc98d6..f2b6503 100644
--- a/src/styles/_modal.scss
+++ b/src/styles/_modal.scss
@@ -2172,17 +2172,13 @@ $alert-color: #101010;
&.tab2{
margin-top: 10px;
gap: 15px;
-
+ .eaves-keraba-table{
+ margin-top: 0;
+ }
}
.module-flex-item{
flex: 1;
- .module-flex-item-tit{
- font-size: 12px;
- font-weight: 500;
- color: #fff;
- padding-bottom: 10px;
- border-bottom: 1px solid #4D4D4D;
- }
+
.flex-item-btn-wrap{
display: grid;
grid-template-columns: repeat(2, 1fr);
@@ -2198,6 +2194,20 @@ $alert-color: #101010;
}
}
}
+.module-flex-item-tit-wrap{
+ display: flex;
+ align-items: center;
+ padding-bottom: 10px;
+ border-bottom: 1px solid #4D4D4D;
+ .module-flex-item-tit{
+ font-size: 12px;
+ font-weight: 500;
+ color: #fff;
+ }
+ button{
+ margin-left: auto;
+ }
+}
.module-table-box{
.module-table-inner{
@@ -2339,4 +2349,26 @@ $alert-color: #101010;
align-items: center;
justify-content: center;
}
+}
+
+.module-area{
+ display: flex;
+ align-items: center;
+ .module-area-title{
+ flex: none;
+ font-size: 12px;
+ color: #fff;
+ font-weight: 500;
+ margin-right: 20px;
+ }
+ .outline-form{
+ flex: 1;
+ }
+}
+
+.placement-name-guide{
+ font-size: 11px;
+ margin-left: 10px;
+ color: #53a7eb;
+ font-weight: 500;
}
\ No newline at end of file
|