Skip to content

Commit

Permalink
Develop to master (#59)
Browse files Browse the repository at this point in the history
Co-authored-by: Adri <119002051+AdriMM26@users.noreply.github.com>
  • Loading branch information
carlotacb and AdriMM26 authored Mar 26, 2024
1 parent 18237fe commit df6350c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 1 addition & 7 deletions src/app/components/HowToParticipate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,7 @@ export default function HowToParticipate() {
are passionate about it, or if you've graduated more than a year ago
and can't participate as a hacker, apply now as a mentor!
</Text>
<SecondaryOutlineButton
href="https://my.hackupc.com/user/signup/mentor/"
target="_blank"
rel="noopener noreferrer"
>
Apply as a mentor
</SecondaryOutlineButton>
<SecondaryOutlineButton disabled>Closed</SecondaryOutlineButton>
</TextContainer>
</RoleBlock>

Expand Down
2 changes: 1 addition & 1 deletion src/app/genericComponents/Buttons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const ButtonGeneric = styled.a<ButtonProps>`
font-size: ${BodyText};
width: ${(props) => props.width || "fit-content"};
margin-top: ${SpacingS};
cursor: ${(props) => props.disabled && "not-allowed"};
@media (max-width: ${MobileBreakpoint}) {
padding: ${SpacingS};
Expand All @@ -56,7 +57,6 @@ export const PrimaryButton = styled(ButtonGeneric)`
border: none;
background-color: ${(props) => (props.disabled ? Primary100 : Primary300)};
color: ${(props) => (props.disabled ? Primary300 : Primary100)};
cursor: ${(props) => props.disabled && "not-allowed"};
&:hover {
background-color: ${(props) => !props.disabled && Primary400};
Expand Down

0 comments on commit df6350c

Please sign in to comment.