Fix width styling in App.jsx component
The width was changed from "100%" to 88 to ensure consistent styling and alignment with design specifications. This adjustment prevents visual discrepancies in the rendered component.
This commit is contained in:
@@ -445,7 +445,7 @@ export default function App() {
|
|||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
height: 88, // ✅ "dünn" (kannst du 80–96 spielen)
|
height: 88, // ✅ "dünn" (kannst du 80–96 spielen)
|
||||||
width: "100%",
|
width: 88,
|
||||||
borderRadius: 16,
|
borderRadius: 16,
|
||||||
background: `
|
background: `
|
||||||
radial-gradient(140% 160% at 15% 10%, rgba(235,215,175,0.88), rgba(215,185,135,0.82) 55%, rgba(165,125,75,0.75)),
|
radial-gradient(140% 160% at 15% 10%, rgba(235,215,175,0.88), rgba(215,185,135,0.82) 55%, rgba(165,125,75,0.75)),
|
||||||
|
|||||||
Reference in New Issue
Block a user