Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra committed Oct 23, 2024
1 parent 9269833 commit 7fd7e92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/lib/lemon-ui/colors.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export function AllThreeThousandColorOptions(): JSX.Element {
render: function RenderColor(color) {
return (
<div className="bg-bg-3000-light flex items-center justify-center border rounded h-16 w-16">
<div className={`bg-${color as string}-light border rounded h-8 w-8`} />
<div className={`bg-${color as string} border rounded h-8 w-8`} />
</div>
)
},
Expand All @@ -269,7 +269,7 @@ export function AllThreeThousandColorOptions(): JSX.Element {
render: function RenderColor(color) {
return (
<div className="bg-bg-3000-dark flex items-center justify-center border rounded h-16 w-16">
<div className={`bg-${color as string}-dark border rounded h-8 w-8`} />
<div className={`bg-${color as string} border rounded h-8 w-8`} />
</div>
)
},
Expand Down

0 comments on commit 7fd7e92

Please sign in to comment.