Skip to content

Commit

Permalink
fix(docs): bg color for cards (#3508)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke authored Dec 18, 2024
1 parent 45143a9 commit 68a7e95
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions showcases/patternhub/pages/foundations/colors/color-schemes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ const ColorOverview = () => {
</DBButton>
<section className="color-cards">
{colors.map((color) => (
<div
key={color}
className={`db-${color}-bg-basic-level-1`}>
<DBCard spacing="medium" elevationLevel="3">
<DBCard spacing="medium" elevationLevel="2">
<DBCard spacing="medium">{color}</DBCard>
</DBCard>
<DBCard
spacing="medium"
elevationLevel="3"
className={`db-${color}-bg-basic-level-1`}
key={color}>
<DBCard spacing="medium" elevationLevel="2">
<DBCard spacing="medium">{color}</DBCard>
</DBCard>
</div>
</DBCard>
))}
</section>
</div>
Expand Down

0 comments on commit 68a7e95

Please sign in to comment.