Finally fix uncentered team cards

This commit is contained in:
2026-02-25 00:01:33 -05:00
parent f2f01f42c2
commit 7c7448137a

View File

@@ -34,11 +34,11 @@ export default function () {
display: "grid",
gap: "1rem",
gridTemplateColumns: "repeat(auto-fill, minmax(16rem, 1fr))",
width: "100%",
justifyItems: "center",
}}
>
{team.map((member) => (
<Card borderRadius="36px" key={member.id} maxW="xs" p="12px">
<Card borderRadius="36px" key={member.id} p="12px" width="100%">
<Image
alt={member.tag + "'s avatar"}
borderRadius="50%"