Here is the code for a card footer that I am having trouble with:
<div class="card text-center">
<!-- CODE FOR card-header, card-body -->
<div class="card-footer">
<div class="d-flex justify-content-center">
<a href="#" class="card-link btn btn-primary btn-sm">
<i class="fas fa-briefcase fa-2x"></i>
</a>
<a href="#" class="card-link btn btn-info btn-sm">
<i class="fas fa-comments fa-2x"></i>
</a>
<a href="#" class="card-link btn btn-success btn-sm">
<i class="fas fa-user fa-2x"></i>
</a>
<a href="#" class="card-link btn btn-warning btn-sm">
<i class="fas fa-exclamation-circle fa-2x"></i>
</a>
<a href="#" class="card-link btn btn-success btn-sm">
<i class="fas fa-check fa-2x"></i>
</a>
</div>
</div>
</div>
I am experiencing display issues on an iPhone 7 when viewing the card in Chrome.
This is how it appears on the iPhone :
https://i.sstatic.net/4ELEd.png
Interestingly, the card displays correctly in Chrome on desktop when using the "toggle device toolbar" to preview as an iPhone 7:
https://i.sstatic.net/49T4h.png
However, when using the same tool to view as an iPhone 5 on desktop Chrome, it does not display properly:
https://i.sstatic.net/v6O73.png
Any assistance on this issue would be greatly appreciated!