Right now I have a Circle which serves as a wrapper for my icons. However, I was wondering if it was possible to not show the "full" circle but rather 80% of it. The provide picture shows the desired result.
My Wrapper Class:
.icon-wrapper {
position: relative;
border: 2px solid black;
padding: $icon-padding;
border-radius: 50%;
}

You use either
:afteror:beforePseudo-element.In order to achieve the reqired result, adjust the width, height, top, and left properties of the
:afterelement.Read more here: https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-elements