I am attempting to create a grid caret with a top and bottom caret that displays a grey area when the user hovers over each side.
<div class="control-wrap">
<div class="caret-wrap">
<span class="caret">▲</span>
</div>
<div class="caret-wrap">
<span class="caret">▼</span>
</div>
</div>
While my progress is going well, I am facing an issue with the hover effect not filling the remaining space around the caret.
Check out the demo here.