Skip to content

Commit 6e9e47e

Browse files
committed
chore: add external link icon
1 parent 239c32b commit 6e9e47e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

frontend/app/components/consent/ConsentCard.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ const changing = ref(false)
118118
<template v-else>
119119
<NuxtLink :to="url">
120120
<DesignButton size="large" class="w-full">
121-
{{ $t('consent.goToConsent') }}
121+
<span>{{ $t('consent.goToConsent') }}</span>
122+
<Icon name="lucide:external-link" />
122123
</DesignButton>
123124
</NuxtLink>
124125
</template>
@@ -142,7 +143,7 @@ const changing = ref(false)
142143
{{ $t('consent.acceptButton') }}
143144
</DesignButton>
144145
<DesignButton
145-
variant="secondary"
146+
variant="tertiary"
146147
size="large"
147148
class="w-full"
148149
@click="handleReject"

frontend/app/pages/challenges/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const { data, fetching, error } = useChallengesPageQuery({
1212
<ErrorState v-else-if="error" :error />
1313
<div
1414
v-else-if="data?.myCurrentProject.challenges.length"
15-
class="space-y-list-section-gap"
15+
class="space-y-list-section-gap p-list-outside"
1616
>
1717
<ChallengeCard
1818
v-for="challenge in data.myCurrentProject.challenges"

0 commit comments

Comments
 (0)