https://i.sstatic.net/KsftB.png
Could you please take a look at this image? I am trying to move an arrow icon downwards but adjusting padding and margin doesn't seem to work. Is there any other way to achieve this?
HTML
<mat-card-content fxLayout="column" class="content pl-3">
<span>
<h6 class="main-line border-bottom pt-2"> Members <mat-icon class="dia">arrow_right_alt</mat-icon> <span class="numbers">1000</span></h6>
<h6 class="line border-bottom">Non-Members <span class="numbers">200</span></h6>
<h6 class="line border-bottom">Traders <span class="traders">250</span></h6>
<h6 class="line border-bottom">Employee <span class="employee">40</span></h6>
<h6 class="line border-bottom">-</h6>
<h6>-</h6>
</span>
</mat-card-content>
CSS
.dia{
// margin-bottom: 4%;
line-height: 0.2;
// margin-top: 1%;
color: #0b4983;
padding-top: -5px;
position: absolute;
}