Skip to content

Commit a435d40

Browse files
authored
feat(109): Change tutorial link with icon
1 parent cb7a050 commit a435d40

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

libs/design-system/src/components/ui/icon/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ import {
6060
mdiLightbulb,
6161
mdiHelp,
6262
mdiPuzzle,
63+
mdiHelpCircleOutline,
6364
mdiRename,
6465
} from "@mdi/js";
6566

@@ -125,6 +126,7 @@ export const iconsMapper = {
125126
lightbulb: mdiLightbulb,
126127
help: mdiHelp,
127128
puzzle: mdiPuzzle,
129+
helpCircleOutline: mdiHelpCircleOutline,
128130
rename: mdiRename,
129131
};
130132

services/spotter/src/domains/search/components/AdvancedSearchInput.vue

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function onSubmit() {
4242
class="flex flex-col gap-4 pt-1"
4343
@submit.prevent="onSubmit"
4444
>
45-
<div class="flex flex-wrap gap-4 items-center">
45+
<div class="flex gap-4 items-center">
4646
<DSPrimaryButton type="submit">
4747
{{ $t("cta.search") }}
4848
</DSPrimaryButton>
@@ -62,9 +62,12 @@ function onSubmit() {
6262

6363
<RouterLink
6464
:to="scratchTutorialPage"
65-
class="text-blue-seaence hover:underline"
65+
class="text-blue-seaence"
6666
>
67-
{{ $t("cta.howItWorks") }}
67+
<DSIcon
68+
name="helpCircleOutline"
69+
square
70+
/>
6871
</RouterLink>
6972
</div>
7073

0 commit comments

Comments
 (0)