gamebrary/src/components/IgdbLogo.vue
2020-08-14 16:57:40 -07:00

16 lines
370 B
Vue

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