Skip to content

Minor visual mobile bug fixes #171

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 7, 2024
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
11 changes: 9 additions & 2 deletions packages/frontendmu-nuxt/components/cards/CardAlbum.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,15 @@ defineProps<{

<template>
<div v-if="currentAlbum" class="grid grid-cols-3 items-center h-full">
<NuxtImg v-for="photo in currentAlbum" :key="photo" :src="`${source}/${photo}`" alt="Album Photo" width="100"
height="160" class="object-cover w-full h-full block" loading="lazy"
<NuxtImg
v-for="photo in currentAlbum"
:key="photo"
:src="`${source}/${photo}`"
alt="Album Photo"
width="242"
height="408"
class="object-cover w-full h-full block"
loading="lazy"
/>
</div>
</template>
4 changes: 2 additions & 2 deletions packages/frontendmu-nuxt/components/home/EventCarousel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function allSpeakersForEvent(event: Meetup) {
</div>
</CarouselItem>
</CarouselContent>
<CarouselPrevious />
<CarouselNext />
<CarouselPrevious class="-left-[14px] xl:-left-[40px]" />
<CarouselNext class="-right-[14px] xl:-right-[40px]" />
</Carousel>
</template>
5 changes: 3 additions & 2 deletions packages/frontendmu-nuxt/components/home/Hero.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
{{ useAppConfig().description }}
</p>
<div class="grid place-items-center md:place-items-start">
<NuxtLink href="/meetups"
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"
<NuxtLink
href="/meetups"
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"
>
View all meetups
</NuxtLink>
Expand Down
Loading