I am attempting to create a unique icon by combining two different bootstrap icons together:
https://i.stack.imgur.com/RWiQn.png
Despite trying various margin adjustments like top and right, I have not been able to achieve the desired effect. Here is what I have attempted so far: jsfiddle
Code:
<div class="row pull-right" style="margin-right: 50px; margin-top: 10px;">
<div id="toggleIcon">
<div class="eye">
<span class="glyphicon glyphicon-eye-open adjust-eye"></span>
</div>
<span class="glyphicon glyphicon-align-justify"></span>
</div>
</div>
SCSS: (in fiddle)
Please advise on how to achieve this unique icon combination and why the specified margins are not behaving as expected.