My b-button acts as a router-link/a tag, and I can't seem to get the content centered the way I want. I'm aiming for the text to be below my font awesome icon, with both elements aligned both horizontally and vertically, but nothing I've tried has worked.
<b-button variant="primary" class="main-navigation-button primary-custom-color"
:to="{name: 'companyCarList'}">
<i class="fas fa-car fa-4x icon-full-width"></i>
Text
</b-button>
Here is the style of my button:
.main-navigation-button {
border: solid 1px transparent;
border-radius: 1rem;
box-shadow: 3px 3px 5px #ccc;
font-size: 2vmax;
margin-bottom: 20px;
width: 15vw;
height: 15vw;
min-width: 150px;
min-height: 150px;
}