Merge pull request #1440 from gradido/profil-settings-distance

Profil settings and footer refactor
This commit is contained in:
Alexander Friedland 2022-02-09 09:45:52 +01:00 committed by GitHub
commit 67181263ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 18 deletions

View File

@ -1,6 +1,6 @@
<template>
<footer class="footer px-4 bg-transparent">
<b-row align-v="center" class="justify-content-lg-between">
<footer class="footer m-4 p-4 bg-transparent">
<b-row align-v="center" class="mt-4 justify-content-lg-between">
<b-col>
<div class="copyright text-center text-lg-center text-muted">
© {{ year }}

View File

@ -9,22 +9,30 @@
></vue-qrcode>
</div>
<div class="card-profile-stats d-flex justify-content-center mt-md-5">
<div>
<span class="heading">
{{ $n(balance, 'decimal') }}
</span>
<span class="description">GDD</span>
</div>
<div>
<span class="heading">{{ transactionCount }}</span>
<span class="description">{{ $t('transactions') }}</span>
</div>
<div>
<span class="heading">--</span>
<span class="description">{{ $t('community.community') }}</span>
</div>
</div>
<b-container class="d-flex justify-content-center mt-md-5">
<b-row>
<b-col>
<div class="text-center font-weight-bold">
{{ $n(balance, 'decimal') }}
</div>
<div class="text-center">GDD</div>
</b-col>
<b-col>
<div class="text-center font-weight-bold">
{{ transactionCount }}
</div>
<div class="text-center">
{{ $t('transactions') }}
</div>
</b-col>
<b-col>
<div class="text-center font-weight-bold">--</div>
<div class="text-center">
{{ $t('community.community') }}
</div>
</b-col>
</b-row>
</b-container>
</b-card>
</div>
</template>