Skip to content

Commit

Permalink
fix: fixed colors on check status badges
Browse files Browse the repository at this point in the history
  • Loading branch information
EwoutV committed May 24, 2024
1 parent f940b0a commit 59a0fab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/submissions/AllSubmission.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const navigateToSubmission = (submissionId: string): void => {
<div
v-for="submission in sortedSubmissions"
:key="submission.id"
class="px-3 py-2 surface-100 gap-2 flex submission justify-content-between align-items-center"
class="px-3 py-2 surface-100 gap-2 mb-3 flex submission justify-content-between align-items-center"
@click="navigateToSubmission(submission.id)"
>
<div class="flex align-items-center gap-2">
Expand Down Expand Up @@ -133,7 +133,7 @@ const navigateToSubmission = (submissionId: string): void => {
color: white;
}
&.failed-extra {
&.failed-extra:not(.failed-structure) {
background-color: var(--secondary-color);
}
}
Expand Down

0 comments on commit 59a0fab

Please sign in to comment.