Skip to content

Commit

Permalink
chore: 포인터 스타일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
six-standard committed May 11, 2024
1 parent a858467 commit 49a8a99
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/Team/TeamContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ export const TeamContainer = ({ name, admin, tag, deploy }: TeamContainerType) =
};

const Wrapper = styled.div`
user-select: none;
cursor: pointer;
width: 100%;
height: 134px;
padding: 20px 40px;
Expand All @@ -70,4 +72,8 @@ const Wrapper = styled.div`
color: ${theme.color.gray8};
font-weight: 500;
}
transition: 0.1s ease-in-out;
&:hover {
border: 1.5px ${theme.color.gray9} solid;
}
`;

0 comments on commit 49a8a99

Please sign in to comment.