Fix link vertical alingment in Basebox
This commit is contained in:
parent
a7900f6bc8
commit
f4bde62e93
|
|
@ -5,7 +5,7 @@ defineProps<{
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<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">
|
<h4 class="mb-1 font-bold">
|
||||||
<slot name="title"></slot>
|
<slot name="title"></slot>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
|
||||||
|
|
@ -150,7 +150,10 @@ function hasActionButton(): boolean {
|
||||||
>
|
>
|
||||||
<UkStatistics :course-slug="courseSlug" :course-id="courseConfig.course_id" />
|
<UkStatistics :course-slug="courseSlug" :course-id="courseConfig.course_id" />
|
||||||
</div>
|
</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
|
<MentorOpenTasksCount
|
||||||
v-if="hasWidget('MentorTasksWidget')"
|
v-if="hasWidget('MentorTasksWidget')"
|
||||||
:course-id="courseConfig.course_id"
|
:course-id="courseConfig.course_id"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue