I have a variety of badges representing users. Some users have images displayed as blocks while others are represented by text inline.
https://i.sstatic.net/BtDgo.png
Within the container, we have the following structure:
<div class="align-self-center">
Each individual item looks like this:
<div style="height:30px" class="pl-0 pt-0 pb-0 mr-1 mt-1 badge badge-danger">
<span class="p-1">PMT</span>
<span class="align-self-center">46h </span>
</div>
It appears that the current approach may be overly complex and is not producing the desired results.
I would appreciate guidance on how to properly align all items vertically.