🚨chore: Sync Sass

This commit is contained in:
minsik 2024-10-23 10:53:02 +09:00
parent e800b785db
commit 743c90fdaa
3 changed files with 41 additions and 1 deletions

View File

@ -0,0 +1,5 @@
<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="1" width="14" height="14" rx="7" fill="white"/>
<rect x="0.5" y="1" width="14" height="14" rx="7" stroke="#94A0AD"/>
<path d="M9.741 11.059L7.509 8.827L5.277 11.059L4.512 10.294L6.744 8.062L4.512 5.83L5.277 5.065L7.509 7.297L9.741 5.065L10.506 5.83L8.274 8.062L10.506 10.294L9.741 11.059Z" fill="#94A0AD"/>
</svg>

After

Width:  |  Height:  |  Size: 427 B

View File

@ -1200,7 +1200,6 @@
border: 1px solid #E5E5E5;
background: #FFF;
transition: all .15s ease-in-out;
cursor: pointer;
.file-item-info{
.item-num{
display: inline-block;
@ -1255,4 +1254,32 @@
font-size: 16px;
font-weight: 500;
color: #344356;
}
//신규물건 등록
.product-input-wrap{
display: flex;
align-items: center;
width: 200px;
height: 30px;
background-color: #FAFAFA;
border: 1px solid #EEE;
padding: 0 10px;
input{
font-size: 13px;
font-weight: 400;
color: #999999;
padding: 0;
height: 100%;
flex: 1 ;
background-color: inherit;
}
.product-delete{
flex: none;
display: block;
width: 15px;
height: 100%;
background: url(../../public/static/images/sub/product-del.svg)no-repeat center;
background-size: 15px 15px;
}
}

View File

@ -460,6 +460,7 @@ input[type=text]{
line-height: 30px;
border-radius: 2px;
background-color: #323234;
border: 1px solid #323234;
color: #fff;
font-size: 12px;
font-weight: 500;
@ -467,6 +468,10 @@ input[type=text]{
padding: 0 10px;
letter-spacing: 0px;
text-align: right;
transition: border .15s ease-in-out;
&:focus{
border: 1px solid #1083E3;
}
&::placeholder{
opacity: 1;
font-size: 12px;
@ -498,6 +503,9 @@ input[type=text]{
font-weight: normal;
transition: border-color .17s ease-in-out;
text-align: left;
&:focus{
border-color: #94A0AD;
}
&:read-only{
background-color: #FAFAFA;
color: #999999;