Skip to content

Commit

Permalink
Merge pull request #60 from team-pofo/style/#59/cardHoverEvent
Browse files Browse the repository at this point in the history
style. #59-프로젝트 카드 호버시 이벤트 추가
  • Loading branch information
kevinmj12 authored Jan 20, 2025
2 parents 08d0650 + 7ff860c commit f6b3662
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/ProjectCard/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ export const Card = styled.div`
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition:
transform 0.3s ease,
box-shadow 0.3s ease;
&:hover {
transform: translateY(-8px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
`;

export const ImageWrapper = styled.div`
Expand Down

0 comments on commit f6b3662

Please sign in to comment.