gamebrary/src/components/IgdbLogo.vue

19 lines
465 B
Vue
Raw Normal View History

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