Skip to content

Commit f22f69e

Browse files
authored
Merge pull request #169 from P-Appadoo/main
Fixed overlapped elements by dock
2 parents acfcfad + 71fc73f commit f22f69e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

packages/frontendmu-nuxt/components/auth/RsvpToMeetup.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ const currentEventRsvpDetail = arrayOfEventRsvpDetail && arrayOfEventRsvpDetail[
106106
</script>
107107

108108
<template>
109-
<div v-if="rsvpOpen" class="dock-block sticky top-[90dvh] px-2 md:px-8 z-10 w-full">
110-
<div class="contain relative h-16">
111-
<div class="absolute left-0 right-0 bottom-0 w-full max-h-[80vh] overflow-y-auto rounded-2xl ">
109+
<div v-if="rsvpOpen" class="dock-block sticky px-2 md:px-8 z-10 w-full bottom-6">
110+
<div class="contain">
111+
<div class="w-full max-h-[80vh] overflow-y-auto rounded-2xl">
112112
<div
113113
class="relative flex md:gap-4 gap-2 flex-col shadow-2xl bg-white/90 text-verse-800 shadow-zinc-800 ring-2 ring-zinc-900/5 backdrop-blur-2xl dark:bg-verse-800/40 dark:text-zinc-200 py-2"
114114
>

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,8 @@ const currentAlbum = computed(() => fetchAlbumDetails(props.getCurrentEvent?.alb
7272
</div>
7373
</div>
7474
</div>
75-
<ClientOnly>
76-
<AuthRsvpToMeetup :meetup-id="routeId" :meetup-details="getCurrentEvent" />
77-
</ClientOnly>
7875
<div class="contain">
79-
<div class="mt-10">
76+
<div class="mt-10 mb-4">
8077
<div class="grid grid-cols-1 md:grid-cols-2 gap-x-4 gap-y-4 md:gap-y-8">
8178
<template v-if="getCurrentEvent.Date">
8279
<div class="border-t-2 border-verse-900/20 dark:border-verse-800/50 pt-6">
@@ -137,6 +134,9 @@ const currentAlbum = computed(() => fetchAlbumDetails(props.getCurrentEvent?.alb
137134
</ClientOnly>
138135
</div>
139136
<MeetupAlbum :get-current-event="getCurrentEvent" :current-album="currentAlbum" :source="photoAlbumSource" />
137+
<ClientOnly>
138+
<AuthRsvpToMeetup :meetup-id="routeId" :meetup-details="getCurrentEvent" />
139+
</ClientOnly>
140140
</ContentBlock>
141141
</div>
142142
</div>

0 commit comments

Comments
 (0)