Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions app/(pages)/_components/ScoringForm/ScoringForm.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
display: flex;
flex-direction: column;
gap: 24px;
color: #000;
font-family: "Plus Jakarta Sans";
font-style: normal;
font-weight: 400;
line-height: normal;
}

.comment_box {
Expand All @@ -21,11 +26,12 @@
padding: 1rem;
min-height: 170px;
margin-top: 16px;
border-radius: 20px;
}

.submit_button {
background-color: #005271;
border-radius: 8px;
background-color: #121212;
border-radius: 30px;
color: white;
padding: 15px;
font-weight: 600;
Expand Down
2 changes: 1 addition & 1 deletion app/(pages)/_components/ScoringForm/ScoringForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export default function ScoringForm({ team, submission }: ScoringFormProps) {
</div>
))}
<button type="submit" className={styles.submit_button}>
{isEditMode ? 'Edit' : 'Submit'} Scores
{isEditMode ? 'Edit' : 'Submit'}
</button>
</form>
);
Expand Down
32 changes: 22 additions & 10 deletions app/(pages)/judges/(app)/score/[team-id]/page.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
padding: 40px 24px;
display: flex;
flex-direction: column;
background-color: #F2F2F7;
background-color: #FAFAFF; // changed
min-height: 100vh;
}

Expand All @@ -16,17 +16,23 @@
}

.tab {
padding: 4px 24px;
padding: 6px 24px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 20px;
border: 1.5px solid var(--teal-1, #005271);

border-radius: 20px;
border: 1px dashed #3F3F3F;
background-color: transparent;
color: #3F3F3F;

height: auto;
background-color: white;
cursor: pointer;

&.active {
background: var(--cow, linear-gradient(180deg, #9EE7E5 0%, #9EE7E5 100%));
background: #3F3F3F; // changed
color: white;
border: none;
}
}

Expand All @@ -35,23 +41,30 @@
font-size: 3rem;
font-weight: 700;
margin: 12px 0;
border-radius: 20px; // added
}

.back_button {
display: flex;
align-items: center;
gap: 12px;
color: #005271;
font-size: 1.125rem;
color: #121212;
font-style: normal;
font-weight: 600;
line-height: 100%; /* 18px */
letter-spacing: 0.36px;
padding: 12px 0;
background: transparent;
box-shadow: none;
border-radius: 20px; // added
}

.info_container {
display: none;
flex-direction: column;
gap: 16px;
border-radius: 20px;

&.show {
display: flex;
Expand All @@ -60,8 +73,7 @@

.category_card {
padding: 16px 20px;
border-radius: 8px;
background: linear-gradient(180deg, #9EE7E5 0%, #9EE7E5 100%);
box-shadow: 0px 4px 8px 4px rgba(195, 194, 194, 0.08);
border-radius: 50px;
background: #9EE7E5;
width: fit-content;
}
Loading