Merge branch 'master' into split-table-component

This commit is contained in:
Moriz Wahl 2022-02-09 12:24:37 +01:00 committed by GitHub
commit 9e49ddab18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 19 deletions

View File

@ -27,3 +27,9 @@ $btn-focus-width: $input-btn-focus-width !default;
$btn-active-box-shadow: none !default;
$btn-hover-translate-y: -1px !default;
.btn-outline-secondary {
color: #4385b1 !important;
}

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

@ -270,4 +270,3 @@ export default {
},
}
</script>
<style></style>

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>