Skip to content

Commit

Permalink
chore: remove shadows from typo/colors stories
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehenson committed Nov 21, 2024
1 parent b778c28 commit a746d36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/core/styles/Typography.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const fontCell = (style) => (
<div
key={style.label}
className={clsx(
"rounded-lg p-16 ui-shadow-lg-soft flex flex-col gap-8 bg-neutral-100 text-neutral-1300 dark:bg-neutral-1200 dark:text-neutral-000",
"rounded-lg p-16 flex flex-col gap-8 bg-neutral-100 text-neutral-1300 dark:bg-neutral-1200 dark:text-neutral-000",
style.className,
)}
>
Expand Down
5 changes: 1 addition & 4 deletions src/core/styles/colors/Colors.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ export default {

const colorSet = (colors, useClass = "") =>
colors.map((color) => (
<div
key={color}
className="rounded-lg w-128 ui-shadow-lg-soft flex flex-col"
>
<div key={color} className="rounded-lg w-128 bg-neutral-100 flex flex-col">
<div
className={`h-[100px] rounded-t-lg ${useClass}`}
style={{ backgroundColor: useClass ? `` : `var(--color-${color})` }}
Expand Down

0 comments on commit a746d36

Please sign in to comment.