배치면 설정 버튼 disabled 추가

This commit is contained in:
김창수 2025-02-24 16:36:01 +09:00
parent ae418cad1d
commit 90cf80b487
3 changed files with 24 additions and 4 deletions

View File

@ -89,7 +89,7 @@ export default function CanvasPage() {
{/* <Penal04/> */}
{/* 배치면 초기 설정 */}
{/* <PlacementSettingPop/> */}
<PlacementSettingPop/>
{/* 캔버스 기본 셋팅 */}
{/* {modalOption.option && <SettingModal01/>} */}
@ -103,7 +103,7 @@ export default function CanvasPage() {
{/* {modalOption.outerwall && <OuterLineWall/>} */}
{/* 외벽선 속성 설정 */}
<PropertiesSetting/>
{/* <PropertiesSetting/> */}
{/* 지붕형상 설정 */}
{/* <RoofShapeOption/> */}

View File

@ -172,8 +172,8 @@ export default function PlacementSettingPop(){
<div className="placement-roof-btn-wrap">
<div className="icon-btn-wrap mt10">
<button className="act">並列式<i className="allocation01"></i></button>
<button>カスケード <i className="allocation02"></i></button>
<button className="act" disabled>並列式<i className="allocation01"></i></button>
<button disabled>カスケード <i className="allocation02"></i></button>
</div>
</div>
</td>

View File

@ -995,6 +995,26 @@ $alert-color: #101010;
}
}
}
&:disabled{
color: $pop-color;
border: 1px solid #646464;
background-color: transparent;
opacity: 0.5;
&.act,
&:hover{
color: $pop-color;
border: 1px solid #646464;
background-color: transparent;
i{
&.allocation01{
background-image: url(../../public/static/images/canvas/allocation_icon01_white.svg);
}
&.allocation02{
background-image: url(../../public/static/images/canvas/allocation_icon02_white.svg);
}
}
}
}
}
}