Skip to content

Commit ea2b3f5

Browse files
author
m.buchhorn-roth
committed
style(models): replace gray highlight badges with readable text list
1 parent 0a57068 commit ea2b3f5

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

src/App.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2086,10 +2086,13 @@ function App() {
20862086
</CardHeader>
20872087
<CardContent>
20882088
<p className="text-sm text-muted-foreground leading-relaxed mb-4">{model.description}</p>
2089-
<div className="flex flex-wrap gap-2">
2090-
{model.highlights.map((h, j) => (
2091-
<Badge key={j} variant="secondary" className="text-xs">{h}</Badge>
2092-
))}
2089+
<div className="text-sm text-foreground/85">
2090+
<p className="font-medium mb-2">Kernpunkte</p>
2091+
<ul className="space-y-1 text-muted-foreground leading-relaxed">
2092+
{model.highlights.map((h, j) => (
2093+
<li key={j}>{h}</li>
2094+
))}
2095+
</ul>
20932096
</div>
20942097
</CardContent>
20952098
</Card>

0 commit comments

Comments
 (0)