Skip to content

Commit

Permalink
add back card hover
Browse files Browse the repository at this point in the history
  • Loading branch information
nakajimayoshi committed Jul 11, 2023
1 parent 77e0d44 commit 4405b62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const Card: React.FC<HTMLProps<HTMLDivElement>> = ({ className, children,
className={
classNames(
'rounded-xl bg-theme-padding text-theme-text drop-shadow px-5 py-4',
{ 'cursor-pointer hover:-translate-y-1 hover:drop-shadow-lg transition duration-200': props.onClick },
{ 'cursor-pointer hover:bg-theme-padding hover:-translate-y-1 hover:drop-shadow-lg transition duration-200': props.onClick },
className,
)
}
Expand Down

0 comments on commit 4405b62

Please sign in to comment.