견적서 견적 특이사항 버튼 재수정
This commit is contained in:
parent
54e0bfde39
commit
a4b3783f1b
3
public/static/images/canvas/estiment_arr_color.svg
Normal file
3
public/static/images/canvas/estiment_arr_color.svg
Normal file
@ -0,0 +1,3 @@
|
||||
<svg width="11" height="7" viewBox="0 0 11 7" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path id="Vector 7174" d="M1 1L5.5 5.5L10 1" stroke="#C2D0DD" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 229 B |
@ -220,8 +220,8 @@ export default function CanvasEstimate() {
|
||||
<div className="product_tit">製品情報</div>
|
||||
</div>
|
||||
<div className="left-unit-box">
|
||||
<button className="estimate-arr-btn down mr5" onClick={() => setHidden(false)}></button>
|
||||
<button className="estimate-arr-btn up" onClick={() => setHidden(true)}></button>
|
||||
<button className={`estimate-arr-btn down mr5 ${hidden ? '' : 'on'}`} onClick={() => setHidden(false)}></button>
|
||||
<button className={`estimate-arr-btn up ${hidden ? 'on' : ''}`} onClick={() => setHidden(true)}></button>
|
||||
</div>
|
||||
</div>
|
||||
<div className={`estimate-check-wrap ${hidden ? 'hide':''}`}>
|
||||
|
||||
@ -832,12 +832,21 @@
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background: #94A0AD url(../../public/static/images/canvas/estiment_arr.svg)no-repeat center;
|
||||
background-color: #94A0AD;
|
||||
border: 1px solid #94A0AD;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url(../../public/static/images/canvas/estiment_arr.svg);
|
||||
background-size: 11px 7px;
|
||||
border-radius: 2px;
|
||||
&.up{
|
||||
rotate: 180deg;
|
||||
}
|
||||
&.on{
|
||||
background-color: #fff;
|
||||
border-color: #C2D0DD;
|
||||
background-image: url(../../public/static/images/canvas/estiment_arr_color.svg)
|
||||
}
|
||||
}
|
||||
.estimate-check-wrap{
|
||||
.estimate-check-inner{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user