Skip to content

Commit 8377dca

Browse files
author
Dominik Grenz
committed
Add grey as marked font color
1 parent 22720a6 commit 8377dca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
:checked="!!checklistItem.checked"
66
>
77
</checklist-checked-circle>
8-
<div class="item-title">
8+
<div class="item-title" :class="{ 'item-title-checked': checklistItem.checked }">
99
{{ checklistItem.title }}
1010
</div>
1111
</div>
@@ -26,4 +26,7 @@ defineProps<{
2626
font-family: "Open Sans", "sans-serif";
2727
font-size: 18px;
2828
}
29+
.item-title-checked {
30+
color: #7A8D9F;
31+
}
2932
</style>

0 commit comments

Comments
 (0)