vertical center content in a boostrap column with 100% height – CSS
columns need to be the whole height of the row but the content (text) still needs to be vertically centered. <div class="row fixed-bottom mobile-navbar align-items-center"> <router-link to="/" class="col h-100">Home</router-link> <router-link to="/scan" class="col h-100">Scan</router-link> <router-link to="/account" class="col h-100">Account</router-link> </div> how do…