I am using icomoon for my icon fonts. Some icons are circular in shape. Is there a way that I can draw a circular border around the icon shape?
I've tried targeting the icon and adding a border to it, but it draws as a box border. Is there a way I can target the shape itself?
HTML
<span class="icn icn-clock-circle" style="border: 1px solid red;">::before</span>
CSS
.icn-clock-circle:before {content: "\e9dd";}
Thank you for any help.