This commit is contained in:
Gerald Schmittinger 2025-05-14 01:12:42 +02:00
commit 8490a0ab61
31 changed files with 918 additions and 750 deletions

View file

@ -60,6 +60,22 @@ import authService from "@/services/auth/auth-service";
</div>
<v-row v-else>
<v-col
cols="12"
sm="6"
md="4"
lg="4"
class="d-flex"
>
<ThemeCard
path="/learningPath/search"
:is-absolute-path="true"
:title="t('searchAllLearningPathsTitle')"
:description="t('searchAllLearningPathsDescription')"
icon="mdi-magnify"
class="fill-height grey-bg-card"
/>
</v-col>
<v-col
v-for="card in cards"
:key="card.key"
@ -77,22 +93,6 @@ import authService from "@/services/auth/auth-service";
class="fill-height"
/>
</v-col>
<v-col
cols="12"
sm="6"
md="4"
lg="4"
class="d-flex"
>
<ThemeCard
path="/learningPath/search"
:is-absolute-path="true"
:title="t('searchAllLearningPathsTitle')"
:description="t('searchAllLearningPathsDescription')"
icon="mdi-magnify"
class="fill-height"
/>
</v-col>
<v-col
v-if="isTeacher"
cols="12"
@ -114,4 +114,9 @@ import authService from "@/services/auth/auth-service";
</v-container>
</template>
<style scoped></style>
<style scoped>
.grey-bg-card {
background-color: #f6faf2;
border: 2px solid #0e6942;
}
</style>