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

feat: theme prize #31

Merged
merged 3 commits into from
Mar 17, 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
20 changes: 17 additions & 3 deletions src/components/prizes.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dt
class="text-6xl text-primary text-left leading-7 uppercase mr-16 sm:mr-0"
>
1st PLACE
1<span class="text-3xl">st</span> PLACE
</dt>
<dd class="text-8xl text-left font-bold tracking-tight text-white">
800€
Expand All @@ -34,7 +34,7 @@
<dt
class="text-6xl text-primary text-left leading-7 uppercase mr-16 sm:mr-0"
>
2nd PLACE
2<span class="text-3xl">nd</span> PLACE
</dt>
<dd class="text-8xl text-left font-bold tracking-tight text-white">
600€
Expand All @@ -46,12 +46,26 @@
<dt
class="text-6xl text-primary text-left leading-7 uppercase mr-16 sm:mr-0"
>
3rd PLACE
3<span class="text-3xl">rd</span> PLACE
</dt>
<dd class="text-8xl text-left font-bold tracking-tight text-white">
400€
</dd>
</div>
</dl>
<div class="w-full max-w-xl lg:max-w-6xl flex flex-col items-start gap-4">
<div
class="w-full flex flex-row items-center justify-around lg:flex-col lg:justify-between gap-y-1"
>
<dt
class="text-4xl lg:text-3xl text-primary text-left leading-7 uppercase mr-16 sm:mr-0"
>
Theme Prize
</dt>
<dd class="text-6xl lg:text-5xl text-left font-bold tracking-tight text-white">
+200€
</dd>
</div>
</div>
<slot />
</section>
Loading