fix(frontend): Titels van leerpaden worden nu niet meer afgeknipt

(In de titel van een leerpadpagina & in de overzichten)
This commit is contained in:
Gerald Schmittinger 2025-04-02 09:34:08 +02:00
parent ed8b5c919d
commit c9667af9b4
2 changed files with 16 additions and 6 deletions

View file

@ -24,7 +24,7 @@ const props = defineProps<{learningPaths: LearningPath[]}>();
cover
v-if="learningPath.image"
></v-img>
<v-card-title>{{ learningPath.title }}</v-card-title>
<v-card-title class="learning-path-title">{{ learningPath.title }}</v-card-title>
<v-card-subtitle>
<v-icon icon="mdi-human-male-boy"></v-icon>
<span>{{ learningPath.targetAges.min }} - {{ learningPath.targetAges.max }} {{ t('yearsAge') }}</span>
@ -45,6 +45,9 @@ const props = defineProps<{learningPaths: LearningPath[]}>();
.learning-path-card {
width: 300px;
}
.learning-path-title {
white-space: normal;
}
.results-grid {
margin: 20px;
display: flex;