I have the code snippet below:
<div class="row">
<div class="col-md-2">
<div class="custom-control custom-checkbox my-auto" style="display: inline; align-items: center;">
<input class="custom-control-input" id="customCheck2" type="checkbox" checked >
<label class="custom-control-label" for="customCheck2"></label>
</div>
</div>
<div class="col-md-10">
<div class="progress-wrapper mt-1 pt-0">
<div class="progess-info">
<div>
<span>5 Stars</span>
</div>
<div class="progress-percentage">
<span style="font-size: 12px">65%</span>
</div>
</div>
<div class="progress">
<div class="progress-bar bg-default" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;"></div>
</div>
</div>
</div>
</div>
The issue I'm facing is that the checkbox is not vertically centered, as shown in this screenshot:
https://i.sstatic.net/jjD4h.png
Additionally, there doesn't seem to be any margin or padding around it.