Redesign Cards
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
Chaoscaot 2024-08-13 10:48:31 +02:00
Ursprung 52c9ed0118
Commit be4967f34b

Datei anzeigen

@ -155,7 +155,7 @@ const latestPost = posts.sort((a, b) => dayjs(b.data.created).unix() - dayjs(a.d
<h2 class="dark:text-white text-4xl font-bold">{t("home.prefix." + prefix.replace("PREFIX_", "").toLowerCase())}</h2>
<div class="flex my-4 md:flex-row flex-col flex-wrap justify-center">
{players.map(v => (
<Card extraClasses="py-24 px-12" client:idle>
<Card extraClasses="pt-8 pb-10 px-8" client:idle>
<figure class="flex flex-col items-center">
<figcaption class="text-center mb-4 text-2xl">{v.name}</figcaption>
<Image src={`${import.meta.env.PUBLIC_API_SERVER}/data/skin/${v.uuid}`}