We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22720a6 commit 8377dcaCopy full SHA for 8377dca
personalization-webcomponents/src/components/checklistitem-listitem.vue
@@ -5,7 +5,7 @@
5
:checked="!!checklistItem.checked"
6
>
7
</checklist-checked-circle>
8
- <div class="item-title">
+ <div class="item-title" :class="{ 'item-title-checked': checklistItem.checked }">
9
{{ checklistItem.title }}
10
</div>
11
@@ -26,4 +26,7 @@ defineProps<{
26
font-family: "Open Sans", "sans-serif";
27
font-size: 18px;
28
}
29
+.item-title-checked {
30
+ color: #7A8D9F;
31
+}
32
</style>
0 commit comments