File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
personalization-webcomponents/src/components Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,11 @@ defineProps<{
16
16
width : 20px ;
17
17
height : 20px ;
18
18
border-radius : 50% ;
19
- border : 2px solid var (--color-brand-main-blue );
19
+ border : 2px solid var (--color-neutrals-grey );
20
20
}
21
21
22
22
.circle.checked {
23
- background-color : var (--color-brand-main-blue );
23
+ background-color : #9ca8b3 ;
24
+ border : 2px solid #9ca8b3 ;
24
25
}
25
26
</style >
Original file line number Diff line number Diff line change 5
5
:checked =" !!checklistItem.checked"
6
6
>
7
7
</checklist-checked-circle >
8
- <div class =" item-title" >
8
+ <div
9
+ class =" item-title"
10
+ :class =" { 'item-title-checked': checklistItem.checked }"
11
+ >
9
12
{{ checklistItem.title }}
10
13
</div >
11
14
</div >
@@ -26,4 +29,7 @@ defineProps<{
26
29
font-family : " Open Sans" , " sans-serif" ;
27
30
font-size : 18px ;
28
31
}
32
+ .item-title-checked {
33
+ color : #7a8d9f ;
34
+ }
29
35
</style >
You can’t perform that action at this time.
0 commit comments