Fix onboarding logo styling and replace missing variables

This commit is contained in:
Ramon Wenger 2022-05-18 16:50:08 +02:00
parent 01aa9b6965
commit 583bc8d0c3
4 changed files with 9 additions and 9 deletions

View File

@ -50,13 +50,13 @@
<a
:href="teacherEditionUrl"
class="hep-link"
>{{ flavorPageTitle }} für Lehrpersonen</a>
>{{ $flavor.textAppName }} für Lehrpersonen</a>
</li>
<li class="license-links__item">
<a
:href="studentEditionUrl"
class="hep-link"
>{{ flavorPageTitle }} für Lernende</a>
>{{ $flavor.textAppName }} für Lernende</a>
</li>
</ul>
</section>
@ -68,7 +68,7 @@
import REDEEM_COUPON from '@/graphql/gql/mutations/redeemCoupon.gql';
import ME_QUERY from '@/graphql/gql/queries/meQuery.gql';
import LoadingButton from '@/components/LoadingButton';
import { ValidationObserver } from 'vee-validate';
import {ValidationObserver} from 'vee-validate';
import me from '@/mixins/me';
import logout from '@/mixins/logout';

View File

@ -114,7 +114,7 @@
}
&__logo {
width: 300px;
max-width: 300px;
height: 50px;
margin-bottom: $large-spacing;

View File

@ -6,7 +6,7 @@
</h1>
<p class="onboarding__claim">
Schauen Sie sich die Einführung an und lernen Sie {{ flavorPageTitle }} kennen.
Schauen Sie sich die Einführung an und lernen Sie {{ $flavor.textAppName }} kennen.
</p>
</div>
</template>

View File

@ -63,10 +63,10 @@
<div class="start-page__onboarding">
<h2 class="start-page__heading">
Kennen Sie schon alle Bereiche von {{ flavorPageTitle }}?
Kennen Sie schon alle Bereiche von {{ $flavor.textAppName }}?
</h2>
<p class="start-page__paragraph">
Schauen Sie sich jetzt die Einführung zu {{ flavorPageTitle }} an.
Schauen Sie sich jetzt die Einführung zu {{ $flavor.textAppName }} an.
</p>
<router-link
:to="{name: 'onboarding-start'}"
@ -91,7 +91,7 @@
components: {
NewsTeaser,
ModuleTeaser
ModuleTeaser,
},
computed: {
@ -109,7 +109,7 @@
},
teasers() {
return this.newsTeasers.slice(0, 2);
}
},
},
};