Skip to content

Commit

Permalink
Merge branch 'main' into feature/add-swipe-animation
Browse files Browse the repository at this point in the history
  • Loading branch information
midudev authored Jul 1, 2024
2 parents 5c4f344 + 6cc50e3 commit 7163126
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@fontsource-variable/jost": "5.0.19",
"@vercel/analytics": "1.2.2",
"astro": "4.8.6",
"auth-astro": "4.1.1",
"auth-astro": "4.1.2",
"valibot": "0.30.0"
},
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions src/components/Pronosticos/Vote.astro
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ votes.forEach((vote) => {
]}
src={`https://cdn.lavelada.dev/matches/title-${combat.id}.webp`}
alt={`Fotografía del combate entre ${boxerNames.join(", ")}`}
style="mask-image: linear-gradient(black 80%, transparent)"
/>
<button
class:list={[
Expand Down
1 change: 1 addition & 0 deletions src/consts/boxers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const BOXERS: Boxer[] = addGetters([
birthDate: new Date(1998, 6, 23),
height: 1.95,
age: 25,
weight: 87,
country: "mx",
versus: "plex",
guard: "Izquierda",
Expand Down
1 change: 1 addition & 0 deletions src/sections/Combat.astro
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ const boxerNames = combatData?.boxers ?? []
class="inset-0 h-auto max-h-96 w-full max-w-80 scale-100 object-contain sm:scale-110 lg:max-w-3xl"
src={`https://cdn.lavelada.dev/matches/title-${combatId}.webp`}
alt={`Fotografía del combate entre ${boxerNames.join(", ")}`}
style="mask-image: linear-gradient(black 80%, transparent)"
/>
) : (
<Typography
Expand Down

0 comments on commit 7163126

Please sign in to comment.