I have this here that is supposed to show the check font awesome icon side by side with the in stock text, but when I do this it doesnt show in the center but it shows near the center.
.grid-container {
margin: auto;
display: flex;
}
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<div class="grid-container">
<h4 style="width:50%;margin:0 auto;">
<span class="fa fa-check-circle"></span> In stock
</h4>
</div>