Fix link vertical alingment in Basebox

This commit is contained in:
Christian Cueni 2024-04-25 09:26:12 +02:00
parent a7900f6bc8
commit f4bde62e93
2 changed files with 5 additions and 2 deletions

View File

@ -5,7 +5,7 @@ defineProps<{
</script>
<template>
<div class="flex flex-col space-y-4 bg-white">
<div class="flex h-full flex-col space-y-4 bg-white">
<h4 class="mb-1 font-bold">
<slot name="title"></slot>
</h4>

View File

@ -150,7 +150,10 @@ function hasActionButton(): boolean {
>
<UkStatistics :course-slug="courseSlug" :course-id="courseConfig.course_id" />
</div>
<div v-if="numberOfMentorWidgets > 0" class="flex flex-col flex-wrap md:flex-row">
<div
v-if="numberOfMentorWidgets > 0"
class="flex flex-col flex-wrap items-stretch md:flex-row"
>
<MentorOpenTasksCount
v-if="hasWidget('MentorTasksWidget')"
:course-id="courseConfig.course_id"