style: 조사매물 임시저장 등록번호 색상 변경

This commit is contained in:
Dayoung 2025-07-18 16:33:11 +09:00
parent 94f1103e00
commit a40531488a
2 changed files with 8 additions and 1 deletions

View File

@ -33,7 +33,11 @@ export default function DataTable({ surveyDetail }: { surveyDetail: SurveyBasicI
<tbody>
<tr>
<th></th>
<td>{surveyDetail?.srlNo}</td>
{surveyDetail?.srlNo?.startsWith('一時保存') ? (
<td className="sale-data-num">{surveyDetail?.srlNo}</td>
) : (
<td>{surveyDetail?.srlNo}</td>
)}
</tr>
<tr>
<th></th>

View File

@ -181,6 +181,9 @@
padding: 24px;
background-color: #fff;
border-top: 1px solid #ECECEC;
.sale-data-num {
color: #1259CB;
}
}
.sale-data-table{
width: 100%;