Skip to content

Commit

Permalink
add waikato
Browse files Browse the repository at this point in the history
  • Loading branch information
pdtxie committed Dec 19, 2023
1 parent 47e18e7 commit 192b8ce
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
Binary file added src/lib/assets/club-icons/ICON-WAI.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion src/lib/components/dashboard/MeetupForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<label class="form-label">
Date
<!-- WARN: should i be worried? -->
<input required name="date" type="date" min={new Date().toISOString().slice(0, -14)} value={meetup ? meetup.date.toISOString().slice(0, 10) : null }/>
<input required name="date" type="date" value={meetup ? meetup.date.toISOString().slice(0, 10) : null }/>
</label>

<label class="form-label">
Expand Down
12 changes: 10 additions & 2 deletions src/routes/(app)/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
import iconKAP from "$lib/assets/club-icons/ICON-KAP.webp";
import iconMAN from "$lib/assets/club-icons/ICON-MAN.webp";
import iconTAR from "$lib/assets/club-icons/ICON-TAR.webp";
import iconWAI from "$lib/assets/club-icons/ICON-WAI.webp";
import { ChevronRight } from "lucide-svelte";
</script>

Expand All @@ -31,6 +33,12 @@
</div>

<div id="landing-clubs-grid">
<ClubCard
clubName="Waikato Speedcubers"
clubLocation="Waikato"
clubLogo={iconWAI}
/>

<ClubCard
clubName="Dunedin Speedcubers"
clubLocation="Dunedin, Otago"
Expand Down Expand Up @@ -185,7 +193,7 @@
#landing-clubs-grid {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
margin-left: 2%;
margin-right: 25%;
Expand All @@ -195,7 +203,7 @@
transform-style: preserve-3d;
transform: rotateX(55deg) rotateZ(37deg);
gap: min(48px, 2.5vw);
/* gap: min(48px, 2.5vw); */
flex-shrink: 1;
Expand Down

0 comments on commit 192b8ce

Please sign in to comment.