style(frontend): Kaart met link naar leerinhoudbeheerspagina op de homepage bovenaan en grijs gezet.

This commit is contained in:
Gerald Schmittinger 2025-05-14 23:50:32 +02:00
parent 3fba1240ee
commit f73d277687

View file

@ -76,6 +76,23 @@
class="fill-height grey-bg-card"
/>
</v-col>
<v-col
v-if="isTeacher"
cols="12"
sm="6"
md="4"
lg="4"
class="d-flex"
>
<ThemeCard
path="/my-content"
:is-absolute-path="true"
:title="t('ownLearningContentTitle')"
:description="t('ownLearningContentDescription')"
icon="mdi-pencil"
class="fill-height grey-bg-card"
/>
</v-col>
<v-col
v-for="card in cards"
:key="card.key"
@ -93,23 +110,6 @@
class="fill-height"
/>
</v-col>
<v-col
v-if="isTeacher"
cols="12"
sm="6"
md="4"
lg="4"
class="d-flex"
>
<ThemeCard
path="/my-content"
:is-absolute-path="true"
:title="t('ownLearningContentTitle')"
:description="t('ownLearningContentDescription')"
icon="mdi-pencil"
class="fill-height"
/>
</v-col>
</v-row>
</v-container>
</template>