Skip to content

Commit

Permalink
Fix hoverEffect box-shadow to proper boxShadow
Browse files Browse the repository at this point in the history
  • Loading branch information
JReinhold committed Feb 7, 2024
1 parent 7a78979 commit 7db3287
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 7db3287

Please sign in to comment.