1
Good afternoon, on a site I am developing I need to put as the style of the list icon cluttered as an image, but because it is too big I would just like to decrease its width. I tried here but I could not, follows attached the code.
Html:
<div class="instrucoes">
<div class="passo1">
<span>1.</span> <br>
<span>Deve atender aos requisitos básicos</span>
<ul>
<li>
<span>Possuir CNPJ</span>
</li>
<li>
<span>Se enquadrar em um dos programas apoiados pelo banco</span>
</li>
<li>
<span>Pertencer a um dos municípios atendidos</span>
</li>
</ul>
</div>
</div>
Css:
.passo1 ul{
margin-top: 10px;
margin-left: -10px;
list-style-image: url(../images/check-gray.png);
color: var(--fontGray);
font-size: 14px;
}
.passo1 ul li::before {
position: relative !important;
display: flex !important;
width: 20px !important;
}
.passo1 ul li, .passo2 ul li, .passo3 ul li{margin: 25px 0;}
.passo1 span{
color: var(--fontGray) !important;
font-size: 14px !important;
vertical-align: top;
display: inline-block;
}