Html – Make right side of li a triangle
I have the following HTML defined: <ul class="steps d-flex"> <li class="step">Basic Details<div class="triangle triangle-right"></div></li> </ul> With the following CSS: .steps li { @extend .text-center; position: relative; overflow: hidden; flex: 1 1; align-items: center; justify-content: center; background: $grey-600; } It looks…