npm i sass -D
<ul>
<li>Lorem.</li>
<li>Similique?</li>
<li>Sit?</li>
<li>Omnis.</li>
<li>Distinctio?</li>
</ul>
<style lang="scss" scoped>
ul {
margin: 0;
padding: 0;
list-style: none;
line-height: 2;
li {
border-bottom: 1px solid #f40;
cursor: pointer;
&:hover {
color: #f40;
}
&::before {
content: '. ';
}
&::after {
content: '-';
}
}
}
</style>