clean up about page

This commit is contained in:
Gamebrary 2021-02-03 16:20:33 -07:00
parent edf9959664
commit 25dcf4fab3

View file

@ -1,12 +1,12 @@
<template lang="html"> <template lang="html">
<b-container class="pt-3"> <b-container class="pt-3">
<div class="d-flex justify-content-between align-items-center mb-3"> <vue-markdown
<h3 class="m-0"> class="w-100"
About Gamebrary v-if="readme"
</h3> :source="readme"
</div> />
<div v-if="repo"> <div v-if="repo" class="mb-4">
<b-button <b-button
size="sm" size="sm"
href="https://github.com/romancm/gamebrary/subscription" href="https://github.com/romancm/gamebrary/subscription"
@ -39,12 +39,6 @@
{{ $t('gitHub.issues') }} <b-badge variant="light">{{ repo.open_issues }}</b-badge> {{ $t('gitHub.issues') }} <b-badge variant="light">{{ repo.open_issues }}</b-badge>
</b-button> </b-button>
</div> </div>
<vue-markdown
class="w-100"
v-if="readme"
:source="readme"
/>
</b-container> </b-container>
</template> </template>