gamebrary/src/components/Platforms/PageFooter.vue

50 lines
954 B
Vue
Raw Normal View History

2019-08-20 04:05:58 +00:00
<template>
2019-11-08 20:34:06 +00:00
<footer>
<small>
{{ $t('platforms.donateMessage') }}
<a
href="https://www.paypal.me/RomanCervantes/5"
target="_blank">
{{ $t('platforms.donating') }}
</a>
,
<a
href="https://github.com/romancm/gamebrary/issues"
target="_blank">
{{ $t('platforms.reportBugs') }}
</a>
{{ $t('global.or') }}
<a
href="https://goo.gl/forms/r0juBCsZaUtJ03qb2"
target="_blank">
{{ $t('platforms.submitFeedback') }}
</a>
.
</small>
2019-08-20 04:05:58 +00:00
2019-11-08 20:34:06 +00:00
<igdb-credit />
</footer>
2019-08-20 04:05:58 +00:00
</template>
<script>
import IgdbCredit from '@/components/IgdbCredit';
export default {
2019-11-08 19:56:03 +00:00
components: {
IgdbCredit,
},
2019-08-20 04:05:58 +00:00
};
</script>
2019-09-13 22:11:12 +00:00
<style lang="scss" rel="stylesheet/scss" scoped>
2019-11-08 20:34:06 +00:00
@import "~styles/styles";
2019-09-13 22:11:12 +00:00
2019-11-08 20:34:06 +00:00
footer {
padding: $gp / 2 0;
justify-content: center;
display: flex;
align-items: center;
color: var(--header-text-color);
}
2019-09-13 22:11:12 +00:00
</style>