Skip to content

Commit 2294645

Browse files
committed
refactor: modify session title styling + slides link icon
1 parent e799d34 commit 2294645

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

packages/frontendmu-nuxt/components/meetup/SessionList.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<script setup lang="ts">
2-
import { getGithubUrl } from '@/utils/helpers'
2+
import { getGithubUrl, vTransitionName } from '@/utils/helpers'
33
import type { Session } from '@/utils/types'
4-
import { vTransitionName } from "@/utils/helpers";
54
65
const props = defineProps({
76
sessions: {
@@ -43,8 +42,8 @@ function getSpeakerPhoto(githubAccount: string) {
4342
rel="noopener noreferrer nofollow"
4443
class="w-fit flex flex-row items-center gap-1 py-2 sticky z-[1] text-xs sm:text-sm md:text-base lg:text-lg underline"
4544
>
45+
<Icon name="bx:slideshow" class="w-3 sm:w-4 lg:w-5 h-3 sm:h-4 lg:h-5" />
4646
View slides
47-
<Icon name="noto:backhand-index-pointing-right" class="w-4 h-4" />
4847
</NuxtLink>
4948
</div>
5049

packages/frontendmu-nuxt/components/speaker/EventsList.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const props = defineProps({
2222
<h3 class="text-xs font-medium lg:text-xl text-verse-400">
2323
{{ session.Events_id.title }}
2424
</h3>
25-
<p class="text-xs font-medium lg:text-2xl text-verse-500 dark:text-verse-200">
25+
<p class="text-base sm:text-lg md:text-xl lg:text-2xl font-medium text-verse-500 dark:text-verse-200">
2626
{{ session.Session_id.title }}
2727
</p>
2828
<NuxtLink
@@ -32,8 +32,8 @@ const props = defineProps({
3232
rel="noopener noreferrer nofollow"
3333
class="w-fit flex flex-row items-center gap-1 py-2 sticky z-[1] text-xs sm:text-sm md:text-base lg:text-lg underline"
3434
>
35+
<Icon name="bx:slideshow" class="w-3 sm:w-4 lg:w-5 h-3 sm:h-4 lg:h-5" />
3536
View slides
36-
<Icon name="noto:backhand-index-pointing-right" class="w-4 h-4" />
3737
</NuxtLink>
3838
</div>
3939
</div>

0 commit comments

Comments
 (0)