Skip to content

Commit

Permalink
Merge pull request #640 from nwplus/peer-judging-ui
Browse files Browse the repository at this point in the history
ui fix
  • Loading branch information
indirasowy authored Nov 10, 2024
2 parents 0ace239 + 516c006 commit 04be9c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions src/components/Judging/ViewProject.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const StyledYoutube = styled(Youtube)`

const StyledP = styled(P)`
margin: 1em 0;
color: ${p => p.theme.colors.text};
`

const StyledA = styled(A)`
Expand All @@ -47,14 +48,16 @@ const StyledA = styled(A)`
`

const ExternalLink = styled(A)`
color: ${p => 'white'};
color: ${p => p.theme.colors.tertiaryHover};
font-weight: bold;
&:hover {
color: ${p => p.theme.colors.tertiaryHover};
}
`

const StyledLabel = styled(Label)`
color: ${p => p.theme.colors.textSecondary};
display: block;
margin: 1em 0 0.25em 0;
`
Expand Down Expand Up @@ -134,7 +137,7 @@ const ViewProject = ({ project, score, error, success, isSubmitting, onChange, o
<ExternalLink
target="_blank"
rel="noreferrer noopener"
href="https://www.notion.so/nwplus/Judging-Rubric-2023-026e041c729d48ca8c75efa63d430c42"
href="https://nwplus.notion.site/PUBLIC-HackCamp-2024-Peer-Judging-Rubric-23ecd01e56b04442a7dfe0c7cbabbc62"
>
Hacker Package
</ExternalLink>
Expand Down
4 changes: 2 additions & 2 deletions src/utility/Constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ export const JUDGING_RUBRIC = [
// ------------------ HC
{
id: 'presentation',
label: 'Presentation',
label: 'Presentation/Pitch',
description:
'Is the presentation well-prepared and smooth? Does it make a good business case for the project? Are statistics used when relevant?',
'Is the presentation or pitch is well-prepared and smooth? Does it make a good business case for the project? Are statistics used when relevant?',
value: 5,
// weight: 3 / 18,
weight: 1 / 4,
Expand Down

0 comments on commit 04be9c0

Please sign in to comment.