main 수정

This commit is contained in:
김창수 2024-09-11 18:03:10 +09:00
parent 11f286b310
commit 7ed18ffc7d
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ export default function ProductItem({num, name, children}){
<span className={`item-logo ico0${num}`}></span>
{name}
</h2>
<button className="more-btn"></button>
{num !== 4 && num !== 5 && <button className="more-btn"></button>}
</div>
<div className="product-item-content">
{children}

View File

@ -327,13 +327,13 @@
}
}
.contact-info-list{
padding: 30px;
padding: 25px 30px;
border-radius: 4px;
background-color: #F4F4F7;
.info-item{
display: flex;
align-items: center;
padding: 15px;
padding: 15px 0;
border-bottom: 1px solid #fff;
&:first-child{padding-top: 0;}
&:last-child{padding-bottom: 0; border: none;}