배치면 초기설정 멘트 추가

This commit is contained in:
김창수 2025-03-17 15:34:36 +09:00
parent fad01687c7
commit b02cd7cdb2
3 changed files with 46 additions and 10 deletions

View File

@ -89,7 +89,7 @@ export default function CanvasPage() {
{/* <Penal04/> */}
{/* 배치면 초기 설정 */}
{/* <PlacementSettingPop/> */}
<PlacementSettingPop/>
{/* 캔버스 기본 셋팅 */}
{/* {modalOption.option && <SettingModal01/>} */}

View File

@ -29,7 +29,11 @@ export default function PlacementSettingPop(){
<tbody>
<tr>
<th>図面の作成方法</th>
<td>寸法入力による物品作成</td>
<td>
<div className="placement-name-wrap">
寸法入力による物品作成 <span className="placement-name-guide">数字は[半角]入力のみ可能です</span>
</div>
</td>
</tr>
<tr>
<th>

View File

@ -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;
}