Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions frontend/src/pages/Programs/ProgramEnrollment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</div>
</template>
<template #body-content>
<div v-if="program.data" class="text-base">
<div v-if="program.data" class="text-base text-ink-gray-9">
<div class="bg-surface-blue-2 text-ink-blue-3 p-2 rounded-md leading-5">
<span>
{{
Expand Down Expand Up @@ -46,9 +46,9 @@
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mt-2">
<div
v-for="course in program.data.courses"
class="flex flex-col border p-2 rounded-md h-full"
class="flex flex-col border border-outline-gray-2 p-2 rounded-md h-full"
>
<div class="font-semibold leading-5 mb-2">
<div class="font-semibold text-ink-gray-9 leading-5 mb-2">
{{ course.title }}
</div>

Expand Down Expand Up @@ -85,7 +85,7 @@

<div class="flex items-center space-x-1 mt-auto">
<UserAvatar :user="course.instructors[0]" />
<span>
<span class="text-ink-gray-9">
{{ course.instructors[0].full_name }}
</span>
</div>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/Programs/StudentPrograms.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@click="openDetails(program.name, category)"
class="border rounded-md p-3 hover:border-outline-gray-3 cursor-pointer"
>
<div class="text-lg font-semibold mb-2">
<div class="text-lg font-semibold text-ink-gray-9 mb-2">
{{ program.name }}
</div>

Expand All @@ -40,7 +40,7 @@

<div v-if="Object.keys(program).includes('progress')" class="mt-5">
<ProgressBar :progress="program.progress" />
<div class="text-sm mt-1">
<div class="text-sm text-ink-gray-7 mt-1">
{{ Math.ceil(program.progress) }}% {{ __('completed') }}
</div>
</div>
Expand Down
10 changes: 8 additions & 2 deletions frontend/src/pages/Search/Search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@
</Tooltip>
<div class="space-y-1 w-full">
<div class="flex items-center">
<div class="font-medium" v-html="result.title"></div>
<div
class="font-medium text-ink-gray-9"
v-html="result.title"
></div>
<div class="text-sm text-ink-gray-5 ml-2">
{{ getDocTypeTitle(result.doctype) }}
</div>
Expand All @@ -89,7 +92,10 @@
}}
</div>
</div>
<div class="leading-5" v-html="result.content"></div>
<div
class="leading-5 text-ink-gray-7"
v-html="result.content"
></div>
</div>
</div>
</div>
Expand Down
Loading