Skip to content

Commit 3d13a6b

Browse files
author
Dominik Grenz
committed
§Fix lint
1 parent 8377dca commit 3d13a6b

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

personalization-webcomponents/src/components/checklist-checked-circle.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defineProps<{
2020
}
2121
2222
.circle.checked {
23-
background-color: #9CA8B3;
24-
border: 2px solid #9CA8B3;
23+
background-color: #9ca8b3;
24+
border: 2px solid #9ca8b3;
2525
}
2626
</style>

personalization-webcomponents/src/components/checklistitem-listitem.vue

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
:checked="!!checklistItem.checked"
66
>
77
</checklist-checked-circle>
8-
<div class="item-title" :class="{ 'item-title-checked': checklistItem.checked }">
8+
<div
9+
class="item-title"
10+
:class="{ 'item-title-checked': checklistItem.checked }"
11+
>
912
{{ checklistItem.title }}
1013
</div>
1114
</div>
@@ -27,6 +30,6 @@ defineProps<{
2730
font-size: 18px;
2831
}
2932
.item-title-checked {
30-
color: #7A8D9F;
33+
color: #7a8d9f;
3134
}
3235
</style>

0 commit comments

Comments
 (0)