21 lines
335 B
CSS
21 lines
335 B
CSS
|
.root {
|
||
|
& ul {
|
||
|
list-style: none;
|
||
|
margin-left: 2rem;
|
||
|
|
||
|
& li {
|
||
|
color: #525252;
|
||
|
|
||
|
&::before {
|
||
|
content: '';
|
||
|
display: block;
|
||
|
width: 18px;
|
||
|
margin-left: calc(-1 * 1.6rem);
|
||
|
height: 18px;
|
||
|
top: 7px;
|
||
|
background: url('./check-circle-filled.svg');
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|