Skip to content

Commit

Permalink
Merge branch 'main' into DIM@6043---Unittests-toevoegen
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinICATT authored Sep 21, 2023
2 parents 330babc + 6694b73 commit c6c4c1e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/assets/design-tokens.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
--outline-offset: 3px;

// new categories colours
--new-color-category-website: hsl(212deg 71% 80%);
--new-color-category-smoelenboek: hsl(212deg 71% 89%);
--new-color-category-website: hsl(210deg 57% 69%);
--new-color-category-smoelenboek: hsl(210deg 69% 79%);
--new-color-category-kennisartikel: hsl(0deg 0% 99%);
--new-color-category-vac: hsl(213deg 73% 94%);
}
Expand Down
2 changes: 1 addition & 1 deletion src/assets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ menu {
background-color: var(--new-color-category-website);
}

.category-Vac {
.category-VAC {
background-color: var(--new-color-category-vac);
}

Expand Down
7 changes: 4 additions & 3 deletions src/features/search/VacDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<content-feedback
v-if="antwoordSection"
:name="antwoordSection.label"
:url="antwoordSection"
:current-section="idThing"
:url="unknownURL"
:current-section="CurrentAntwoordFeedbackSection"
/>
</template>
<script setup lang="ts">
Expand All @@ -41,11 +41,12 @@ const props = defineProps<{
headingLevel: 2 | 3 | 4;
}>();
const idThing: CurrentFeedbackSection = {
const CurrentAntwoordFeedbackSection: CurrentFeedbackSection = {
label: props.title,
id: props.headingLevel.toString(),
}
const unknownURL = "onbekend";
const getSection = (
sectionName: string,
Expand Down

0 comments on commit c6c4c1e

Please sign in to comment.