0
Code:
.container__transacoes > h3{
border-bottom: 1px solid #bbb; /*Ver como aumentar as bordas*/
padding-bottom: 10px;
margin: 30px 0px 10px;
margin-right: 190px;
}
.transacoes{
list-style-type: none;
padding: 0;
margin: 40px;
}
.transacoes li {
background-color: #fff;
box-shadow: var(--box-shadow);
color: #333;
display: flex;
justify-content: space-between;
position: relative;
padding: 10px;
margin: 10px 0;
}
.transacoes li.plus {
border-right: 5px solid #0EC206;
}
.transacoes li.minus {
border-right: 5px solid red;
}
<div class="container__transacoes">
<h3>Transações</h3>
<ul id="transacoes" class="transacoes"></ul>
<h3>Adicionar Transações</h3>
</div>
It’s not just putting
border-bottom: 10px solid #bbb;
? orborder-bottom-width: 15px
? You set the size o in pixel, as you wish...– Wallace Maxters
I kind of asked wrong, it wasn’t to increase the width , but rather the size of it up to where the arrow is pointing, you can help me ?
– Valdenirson PEREIRA
Okay. I reopened the question. But I suggest you edit the title, to be more descriptive.
– Wallace Maxters
I helped with the editing. What’s on
.container_transacoes
? I think it might be the answer to find out why it doesn’t go all the way. I suggest you paste the CSS snippet from this div.– Wallace Maxters
I changed here ,,,
– Valdenirson PEREIRA