Skip to content

Commit

Permalink
Change YearButton from button to div and remove hover effects
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaiahA21 committed Dec 18, 2024
1 parent 542b3b8 commit 78ec916
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/components/PreviousExecTeam/PreviousExecTeam.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,22 +46,15 @@ export const ArrowButton = styled.button`
}
`;

export const YearButton = styled.button`
export const YearButton = styled.div`
background-color: transparent;
border: 1px lightgray solid;
border-radius: 10px;
color: #333;
font-size: 1.2rem;
padding: 0.5rem 2rem;
margin: 0 0.3rem;
cursor: pointer;
transition: color 0.3s;
&:hover {
color: #4dd6a8;
}
&.selected {
background-color: lightgray;
}
`;

export const Carousel = styled.div`
Expand Down

0 comments on commit 78ec916

Please sign in to comment.