Skip to content

Fixed overlapped elements by dock #169

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 1 commit into from
Aug 6, 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
6 changes: 3 additions & 3 deletions packages/frontendmu-nuxt/components/auth/RsvpToMeetup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ const currentEventRsvpDetail = arrayOfEventRsvpDetail && arrayOfEventRsvpDetail[
</script>

<template>
<div v-if="rsvpOpen" class="dock-block sticky top-[90dvh] px-2 md:px-8 z-10 w-full">
<div class="contain relative h-16">
<div class="absolute left-0 right-0 bottom-0 w-full max-h-[80vh] overflow-y-auto rounded-2xl ">
<div v-if="rsvpOpen" class="dock-block sticky px-2 md:px-8 z-10 w-full bottom-6">
<div class="contain">
<div class="w-full max-h-[80vh] overflow-y-auto rounded-2xl">
<div
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"
>
Expand Down
8 changes: 4 additions & 4 deletions packages/frontendmu-nuxt/components/meetup/Single.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,8 @@ const currentAlbum = computed(() => fetchAlbumDetails(props.getCurrentEvent?.alb
</div>
</div>
</div>
<ClientOnly>
<AuthRsvpToMeetup :meetup-id="routeId" :meetup-details="getCurrentEvent" />
</ClientOnly>
<div class="contain">
<div class="mt-10">
<div class="mt-10 mb-4">
<div class="grid grid-cols-1 md:grid-cols-2 gap-x-4 gap-y-4 md:gap-y-8">
<template v-if="getCurrentEvent.Date">
<div class="border-t-2 border-verse-900/20 dark:border-verse-800/50 pt-6">
Expand Down Expand Up @@ -137,6 +134,9 @@ const currentAlbum = computed(() => fetchAlbumDetails(props.getCurrentEvent?.alb
</ClientOnly>
</div>
<MeetupAlbum :get-current-event="getCurrentEvent" :current-album="currentAlbum" :source="photoAlbumSource" />
<ClientOnly>
<AuthRsvpToMeetup :meetup-id="routeId" :meetup-details="getCurrentEvent" />
</ClientOnly>
</ContentBlock>
</div>
</div>
Expand Down
Loading