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

View File

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

View File

@ -6,7 +6,7 @@
</h1> </h1>
<p class="onboarding__claim"> <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> </p>
</div> </div>
</template> </template>

View File

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