처마 케라바 아이콘 변경

This commit is contained in:
김창수 2024-10-07 15:09:46 +09:00
parent b286deff8f
commit 846a4eae2f
5 changed files with 54 additions and 11 deletions

View File

@ -0,0 +1,18 @@
<svg width="31" height="30" viewBox="0 0 31 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.75" width="30" height="30" fill="white"/>
<mask id="mask0_14_55" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="31" height="30">
<rect width="31" height="30" fill="white"/>
</mask>
<g mask="url(#mask0_14_55)">
<rect x="25" y="6.5" width="4" height="1" transform="rotate(-90 25 6.5)" fill="#ED0004"/>
<rect x="5" y="6.5" width="4" height="1" transform="rotate(-90 5 6.5)" fill="#ED0004"/>
<rect x="7.30005" y="5" width="1" height="16.4" transform="rotate(-90 7.30005 5)" fill="black"/>
<path d="M9.86255 7L7.30005 4.5L9.86255 2" stroke="black"/>
<path d="M21.3 7L23.8625 4.5L21.3 2" stroke="black"/>
<rect width="2" height="21" transform="matrix(-1 0 0 1 29.7 9)" fill="black"/>
<rect width="2" height="21" transform="matrix(-1 0 0 1 3.69995 9)" fill="black"/>
<rect width="28" height="1.90909" transform="matrix(-1 0 0 1 29.7 9)" fill="black"/>
<rect width="2" height="11" transform="matrix(-1 0 0 1 16.7 19)" fill="black"/>
<path d="M6 10.3103L15.6508 19L25 10" stroke="black" stroke-width="2"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -53,10 +53,10 @@ export default function CanvasPage() {
<CanvasLayout menuValue={menuValue}/> <CanvasLayout menuValue={menuValue}/>
</div> </div>
{/* 패널 배치 집계 */} {/* 패널 배치 집계 */}
<Penal01/> {/* <Penal01/> */}
<Penal02/> {/* <Penal02/> */}
<Penal03/> {/* <Penal03/> */}
<Penal04/> {/* <Penal04/> */}
{/* 배치면 초기 설정 */} {/* 배치면 초기 설정 */}
{/* <PlacementSettingPop/> */} {/* <PlacementSettingPop/> */}

View File

@ -68,7 +68,7 @@ export default function EavesKerabaTab02(){
</div> </div>
<div className="eaves-keraba-td"> <div className="eaves-keraba-td">
<div className="eaves-keraba-ico "> <div className="eaves-keraba-ico ">
<Image src="/static/images/canvas/eaves_icon03.svg" alt="react" width={30} height={30} /> <Image src="/static/images/canvas/eaves_icon10.svg" alt="react" width={30} height={30} />
</div> </div>
</div> </div>
</div> </div>

View File

@ -29,11 +29,15 @@ export default function RoofModuleOptionTab02({setTabNum}){
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td></td> <td>
<td></td> <div className="color-wrap">
<td></td> <span className="color-box"></span>
<td></td> <span>Re.RISE-G3 440</span>
<td></td> </div>
</td>
<td className="al-r">1134</td>
<td>1722</td>
<td>440</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>

View File

@ -178,7 +178,28 @@ table{
.roof-module-table{ .roof-module-table{
table{ table{
table-layout: fixed;
border-collapse: collapse; border-collapse: collapse;
thead{
th{
height: 40px;
padding: 0 10px;
font-size: 12px;
color: #fff;
font-weight: 500;
border: 1px solid #505050;
vertical-align: middle;
background-color: rgba(255, 255, 255, 0.05);
text-align: center;
word-break: keep-all;
}
}
tbody{
td{
font-size: 12px;
color: #fff;
font-weight: 400;
border: 1px solid #505050;
}
}
} }
} }