I need to create the border in the image:
Here is my css:
width: 170;
height: 170;
border-radius: 50%;
background:repeating-linear-gradient(300deg, transparent 0 4px, #fff 4px 6px), linear-gradient(300deg, #EC74E7 0%, #EC74E7 35%, #FF3055 80%, #FF3055 100%);
position: relative;
I was trying to do it with gradients overlapping each other, but can't seem to get it right. What I have so far:
Does anyone know how to?
Thanks