Skip to content
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
2 changes: 1 addition & 1 deletion src/components/LocationPage.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const transportIcons = {

<div class="location-container pb-20">
<!-- Hero Section -->
<section class="relative h-[60vh] min-h-[400px] w-full overflow-hidden rounded-3xl mb-12 shadow-2xl">
<section class="relative h-[40vh] min-h-10 w-full overflow-hidden rounded-3xl mb-12 shadow-2xl">
<img
src="/images/Barcelona/seuUB.jpg"
alt={t['location.hero.title']}
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ const alternates = [
</div>
<Header lang={lang as string} />

<main class="relative grow z-10 flex flex-col justify-center container mx-auto p-4 md:p-8 pt-20">
<main class="relative grow z-10 flex flex-col justify-center container mx-auto p-4 md:p-8">
<slot />
</main>
<Footer lang={lang as string} />
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/components/Header/components/Navigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const { items } = menuTexts[currentLang]

<div
id="main-navigation"
class="fixed top-0 w-full z-50 bg-pycon-black/90 backdrop-blur-md border-b border-pycon-gray-100/30 transition-colors duration-300"
class="fixed top-0 w-screen z-50 bg-pycon-black/90 backdrop-blur-md border-b border-pycon-gray-100/30 transition-colors duration-300"
>
<div class="container mx-auto px-4 h-20 flex items-center justify-between">
<!-- Logo -->
Expand Down
2 changes: 1 addition & 1 deletion src/pages/[lang]/location.astro
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const title = titles[(lang || 'es') as keyof typeof titles]
---

<Layout title={title}>
<div class="grow w-full pt-24">
<div class="grow w-full md:mt-24 mt-12">
<div class="container mx-auto px-4 md:px-8">
<LocationPage lang={lang || 'es'} />
</div>
Expand Down
15 changes: 8 additions & 7 deletions src/pages/[lang]/sponsors.astro
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const {
---

<Layout title={title}>
<div class="grow w-full overflow-x-hidden">
<div class="grow w-full md:mt-24 mt-16">
<div class="container mx-auto px-4 py-8 text-white">
<!-- Hero -->
<div class="text-center mb-12">
Expand Down Expand Up @@ -395,12 +395,12 @@ const {
<h2 class="text-center text-3xl font-bold mb-8">{tiers.title}</h2>

<div class="table-scroll overflow-x-auto pb-4 mb-8 border border-white/10 rounded-lg bg-pycon-black">
<table class="pricing-table w-full border-separate border-spacing-0 min-w-225">
<table class="pricing-table w-full border-separate border-spacing-0">
<thead>
<tr class="bg-pycon-black">
<th
scope="col"
class="w-50 p-4 text-center border-b border-r border-white/10 align-bottom pb-6 sticky left-0 z-10"
class="w-50 p-4 text-center border-b border-r border-white/10 align-bottom pb-6 sticky left-0 z-10 bg-pycon-black"
>{tiers.column1}</th
>
{
Expand Down Expand Up @@ -448,23 +448,24 @@ const {
benefitCategories.items.map((category: any) => (
<>
<tr>
<th
<td
colspan="5"
scope="row"
class="p-4 text-left font-bold text-pycon-orange-75 bg-pycon-black border-b border-white/10 sticky left-0 z-10"
aria-label={category.category}
>
<span aria-hidden="true">{category.category}</span>
</th>
</td>
<td colspan="5" class="bg-pycon-black border-b border-white/10" />
</tr>
{category.rows.map((row: any) => (
<tr>
<th
<td
scope="row"
class="p-4 text-left border-b border-r border-white/10 text-white sticky left-0 bg-pycon-black z-10 text-sm font-normal"
>
{row.label}
</th>
</td>
{row.data.map((val: string) => (
<td class="p-4 text-center border-b border-white/10 text-sm">
{val === '✅' ? (
Expand Down
Loading