Skip to content

Commit d56cab6

Browse files
authored
Merge pull request #171 from n-d-r-d-g/main
Minor visual mobile bug fixes
2 parents 5f157dd + 6d751df commit d56cab6

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

packages/frontendmu-nuxt/components/cards/CardAlbum.vue

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,15 @@ defineProps<{
77

88
<template>
99
<div v-if="currentAlbum" class="grid grid-cols-3 items-center h-full">
10-
<NuxtImg v-for="photo in currentAlbum" :key="photo" :src="`${source}/${photo}`" alt="Album Photo" width="100"
11-
height="160" class="object-cover w-full h-full block" loading="lazy"
10+
<NuxtImg
11+
v-for="photo in currentAlbum"
12+
:key="photo"
13+
:src="`${source}/${photo}`"
14+
alt="Album Photo"
15+
width="242"
16+
height="408"
17+
class="object-cover w-full h-full block"
18+
loading="lazy"
1219
/>
1320
</div>
1421
</template>

packages/frontendmu-nuxt/components/home/EventCarousel.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function allSpeakersForEvent(event: Meetup) {
7070
</div>
7171
</CarouselItem>
7272
</CarouselContent>
73-
<CarouselPrevious />
74-
<CarouselNext />
73+
<CarouselPrevious class="-left-[14px] xl:-left-[40px]" />
74+
<CarouselNext class="-right-[14px] xl:-right-[40px]" />
7575
</Carousel>
7676
</template>

packages/frontendmu-nuxt/components/home/Hero.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
{{ useAppConfig().description }}
2121
</p>
2222
<div class="grid place-items-center md:place-items-start">
23-
<NuxtLink href="/meetups"
24-
class="bg-verse-500 hover:bg-verse-600 transition-colors duration-200 text-md block w-48 rounded-full px-4 py-4 text-center font-medium text-white md:w-52 md:px-6 md:text-lg"
23+
<NuxtLink
24+
href="/meetups"
25+
class="bg-verse-500 hover:bg-verse-600 transition-colors duration-200 text-md block w-48 rounded-full px-4 py-4 text-center font-medium text-white md:w-52 md:px-6 md:text-lg"
2526
>
2627
View all meetups
2728
</NuxtLink>

0 commit comments

Comments
 (0)