diff --git a/components/Podium.tsx b/components/Podium.tsx index 0030697..9173e06 100644 --- a/components/Podium.tsx +++ b/components/Podium.tsx @@ -44,13 +44,13 @@ export const Podium: React.FC = ({ players, onRestart }) => { initial={{ height: 0 }} animate={{ height: "60%" }} transition={{ type: 'spring', bounce: 0.5, delay: 0.5 }} - className="w-1/3 bg-gray-200 rounded-t-[3rem] flex flex-col items-center justify-end p-6 relative border-x-4 border-t-4 border-white/50 shadow-xl" + className="w-1/3 bg-gray-200 rounded-t-2xl md:rounded-t-[3rem] flex flex-col items-center justify-end p-2 md:p-6 relative border-x-4 border-t-4 border-white/50 shadow-xl" > -
- {second.name} +
+ {second.name}
- {second.score} + {second.score} )} @@ -60,13 +60,13 @@ export const Podium: React.FC = ({ players, onRestart }) => { initial={{ height: 0 }} animate={{ height: "80%" }} transition={{ type: 'spring', bounce: 0.6, delay: 1 }} - className="w-1/3 bg-yellow-400 rounded-t-[3rem] flex flex-col items-center justify-end p-6 relative z-10 shadow-2xl border-x-4 border-t-4 border-white/50" + className="w-1/3 bg-yellow-400 rounded-t-2xl md:rounded-t-[3rem] flex flex-col items-center justify-end p-2 md:p-6 relative z-10 shadow-2xl border-x-4 border-t-4 border-white/50" > -
- {winner.name} +
+ {winner.name}
- {winner.score} + {winner.score} )} @@ -76,13 +76,13 @@ export const Podium: React.FC = ({ players, onRestart }) => { initial={{ height: 0 }} animate={{ height: "40%" }} transition={{ type: 'spring', bounce: 0.5, delay: 0 }} - className="w-1/3 bg-orange-400 rounded-t-[3rem] flex flex-col items-center justify-end p-6 relative border-x-4 border-t-4 border-white/50 shadow-xl" + className="w-1/3 bg-orange-400 rounded-t-2xl md:rounded-t-[3rem] flex flex-col items-center justify-end p-2 md:p-6 relative border-x-4 border-t-4 border-white/50 shadow-xl" > -
- {third.name} +
+ {third.name}
- {third.score} + {third.score} )}
diff --git a/scripts/setup-prod.sh b/scripts/setup-prod.sh index 0bcfb4c..8355342 100755 --- a/scripts/setup-prod.sh +++ b/scripts/setup-prod.sh @@ -217,6 +217,7 @@ fi print_step "Building frontend with production URLs..." VITE_API_URL="https://${KABOOT_DOMAIN}" \ +VITE_BACKEND_URL="https://${KABOOT_DOMAIN}" \ VITE_AUTHENTIK_URL="https://${AUTH_DOMAIN}" \ VITE_OIDC_CLIENT_ID="kaboot-spa" \ VITE_OIDC_APP_SLUG="kaboot" \