gamebrary/src/components/IgdbLogo.vue

17 lines
388 B
Vue
Raw Normal View History

<template lang="html">
<b-link
href="https://www.igdb.com/"
class="igdb-credit m-0 d-flex text-center text-decoration-none"
target="_blank"
>
2020-10-05 18:42:04 +00:00
<small class="text-muted pr-1">{{ $t('global.poweredByIgdb') }}</small>
<b-img
center
width="40"
:src="`/static/img/igdb-logo.png`"
2020-10-05 18:42:04 +00:00
:alt="$t('global.poweredByIgdb')"
/>
</b-link>
</template>