style: 회로설정 팝업 총 회로수 select-box 추가

This commit is contained in:
김창수 2025-12-04 10:51:40 +09:00
parent bf681dccba
commit eb315cae64
2 changed files with 12 additions and 2 deletions

View File

@ -649,7 +649,13 @@ export default function StepUp(props) {
style={{ cursor: allocationType === 'auto' ? 'pointer' : 'default' }}
>
<td className="al-r">{item.serQty}</td>
<td className="al-r">{item.paralQty}</td>
<td className="al-r">
{/* 2025.12.04 select 추가 */}
<select className="select-light dark table-select" name="" id="">
<option value="">{item.paralQty}</option>
</select>
</td>
{/* <td className="al-r">{item.paralQty}</td> */}
</tr>
)
})}

View File

@ -460,7 +460,11 @@ button{
}
}
.table-select{
height: 20px;
color: #fff !important;
font-size: 11px !important;
}
// input
.form-input{
label{