fix: visual fix

This commit is contained in:
Livio Bieri 2024-03-20 17:58:10 +01:00
parent dd121fe1ac
commit 6712635437
1 changed files with 9 additions and 3 deletions

View File

@ -134,9 +134,15 @@ const inviteMentor = async () => {
</button>
</div>
</div>
<div v-if="!hasMentors" class="flex items-center">
<it-icon-info class="it-icon mr-2 h-6 w-6" />
{{ $t("a.Aktuell hast du noch keine Person als Lernbegleitung eingeladen.") }}
<div v-if="!hasMentors">
<div class="j mx-1 my-3 flex w-fit items-center space-x-1 bg-sky-200 p-4">
<it-icon-info class="it-icon mr-2 h-6 w-6 text-sky-700" />
<span>
{{
$t("a.Aktuell hast du noch keine Person als Lernbegleitung eingeladen.")
}}
</span>
</div>
</div>
</main>
</div>