Adjust card dimensions in App component.

Updated the card's width and maxWidth to better fit the design requirements. This change ensures a more consistent and visually appealing layout.
This commit is contained in:
2026-02-07 12:55:35 +01:00
parent f7730df3ec
commit 6638622903

View File

@@ -581,8 +581,8 @@ export default function App() {
{/* Die Karte selbst (kleiner als Container) */}
<div
style={{
width: "78%", // ✅ nicht volle Breite
maxWidth: 320,
width: "48%", // ✅ nicht volle Breite
maxWidth: 220,
aspectRatio: "63 / 88", // typisch Kartenformat
borderRadius: 16,
border: `2px solid ${borderColor}`,