From 4f15e4e3cd0b7397008603290af1e923c3becd79 Mon Sep 17 00:00:00 2001 From: ogerly Date: Wed, 1 Jun 2022 09:44:14 +0200 Subject: [PATCH] add href for front button link to gradido --- frontend/src/components/Auth/AuthMobileStart.vue | 6 ++++++ frontend/src/layouts/AuthLayout.vue | 9 ++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Auth/AuthMobileStart.vue b/frontend/src/components/Auth/AuthMobileStart.vue index 7b11df0f3..09985dd77 100644 --- a/frontend/src/components/Auth/AuthMobileStart.vue +++ b/frontend/src/components/Auth/AuthMobileStart.vue @@ -124,4 +124,10 @@ export default { min-width: 360px; } } + +@media screen and (max-height: 700px) { + .mobil-start-box #img3 { + top: -104px; + } +} diff --git a/frontend/src/layouts/AuthLayout.vue b/frontend/src/layouts/AuthLayout.vue index 024d56906..26f8eae85 100644 --- a/frontend/src/layouts/AuthLayout.vue +++ b/frontend/src/layouts/AuthLayout.vue @@ -16,7 +16,9 @@
{{ $t('auth.left.gratitude') }}
{{ $t('auth.left.newCurrency') }}
{{ $t('auth.left.oneAnotherNature') }}
- {{ $t('auth.left.learnMore') }} + + {{ $t('auth.left.learnMore') }} + @@ -118,6 +120,11 @@ export default { this.$refs.pageFontSize.style.fontSize = size + 'rem' }, }, + computed: { + learnMore() { + return 'https://gradido.net/' + this.$i18n.locale + }, + }, }