Skip to content
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

#88 - strange footer behavior #90

Merged
merged 3 commits into from
Sep 24, 2024
Merged
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
66 changes: 31 additions & 35 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -802,12 +802,7 @@ <h2 class="pl-4 text-2xl font-bold">O czym?</h2>
</button>
</div>
</section>
<section
x-data="{ selectedImage: null, navigateToPastMeetup(meetupId) {
window.open(`meetup.html?meetupId=${meetupId}`, '_blank');
}}"
id="poprzednieMeetupy"
>
<section x-data="{ selectedImage: null }" id="poprzednieMeetupy">
<template x-if="pastMeetups.length > 0">
<div class="relative max-w-screen-2xl flex-col text-white lg:mx-auto">
<div class="flex flex-col" id="previousEditions">
Expand All @@ -824,35 +819,36 @@ <h2 class="pl-4 text-2xl font-bold">O czym?</h2>
class="w-max-2xl flex shrink flex-col divide-y divide-y-reverse divide-slate-100/25 rounded-2xl px-4 pt-2"
>
<template x-for="meetup in pastMeetups">
<div
class="flex cursor-pointer flex-row items-center py-4 lg:py-10"
@click="navigateToPastMeetup(meetup.id)"
>
<div
class="text-2xl font-bold text-green-500 lg:text-4xl"
x-text="meetup.formattedDate"
></div>
<a :href="`meetup.html?meetupId=${meetup.id}`" target="_blank">
<div
class="pl-4 text-base font-bold lg:px-8"
x-text="meetup.title"
></div>
<div class="flex flex-grow justify-end pr-4">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="h-6 w-6 -rotate-90"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="m19.5 8.25-7.5 7.5-7.5-7.5"
/>
</svg>
class="grid grid-cols-[180px,1fr,auto] items-center py-4 lg:py-10"
>
<div
class="text-2xl font-bold text-green-500 lg:text-4xl"
x-text="meetup.formattedDate"
></div>
<div
class="pl-4 text-base font-bold lg:px-8"
x-text="meetup.title"
></div>
<div class="flex justify-end pr-4">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="h-6 w-6 -rotate-90"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="m19.5 8.25-7.5 7.5-7.5-7.5"
/>
</svg>
</div>
</div>
</div>
</a>
</template>
</div>
</div>
Expand Down Expand Up @@ -1104,10 +1100,10 @@ <h2 class="pt-10 text-center text-5xl font-bold lg:text-6xl">
</div>
</div>
<div
class="absolute bottom-0 right-0 z-10 -mr-[25em] hidden h-[24em] overflow-hidden lg:block 3xl:-mr-[20em] 4xl:-mr-[15em]"
class="absolute bottom-0 right-0 z-10 -mr-[15em] hidden h-[16em] overflow-hidden lg:block 3xl:-mr-[10em] 4xl:-mr-[5em]"
>
<div
class="size-[56em] rounded-full border-[96px] border-violet-700 4xl:size-[74em]"
class="size-[56em] rounded-full border-[86px] border-violet-700 4xl:size-[74em]"
></div>
</div>
</div>
Expand Down