add href for front button link to gradido

This commit is contained in:
ogerly 2022-06-01 09:44:14 +02:00
parent d1d2ce9565
commit 4f15e4e3cd
2 changed files with 14 additions and 1 deletions

View File

@ -124,4 +124,10 @@ export default {
min-width: 360px;
}
}
@media screen and (max-height: 700px) {
.mobil-start-box #img3 {
top: -104px;
}
}
</style>

View File

@ -16,7 +16,9 @@
<div class="h0 text-white">{{ $t('auth.left.gratitude') }}</div>
<div class="h1 text-white">{{ $t('auth.left.newCurrency') }}</div>
<div class="h2 text-white">{{ $t('auth.left.oneAnotherNature') }}</div>
<b-button variant="gradido">{{ $t('auth.left.learnMore') }}</b-button>
<b-button :href="learnMore" variant="gradido" target="_blank">
{{ $t('auth.left.learnMore') }}
</b-button>
</div>
</div>
<b-row class="justify-content-md-center">
@ -118,6 +120,11 @@ export default {
this.$refs.pageFontSize.style.fontSize = size + 'rem'
},
},
computed: {
learnMore() {
return 'https://gradido.net/' + this.$i18n.locale
},
},
}
</script>