Skip to content

Commit

Permalink
Merge pull request #181 from chromaui/jeppe/fix-box-shadow-warning
Browse files Browse the repository at this point in the history
Fix kebab-case `box-shadow` to proper `boxShadow`
  • Loading branch information
JReinhold authored Feb 8, 2024
2 parents 211ab8b + 7db3287 commit 5a566fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/design-system/shared/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const hoverEffect = css({
"&:hover, &.__hover": {
borderColor: `${rgba(color.secondary, 0.5)}`,
transform: "translate3d(0, -3px, 0)",
"box-shadow": "rgba(0, 0, 0, 0.08) 0 3px 10px 0",
boxShadow: "rgba(0, 0, 0, 0.08) 0 3px 10px 0",
},

"&:active, &.__active": {
Expand Down

0 comments on commit 5a566fe

Please sign in to comment.