I want to implement an angle left icon on top of a vertical column (as you see in the screenshot). This would be use to minimize the tab. Something similar to a badge but unlike a badge it should come over the tab.
The vertical column consists of:
<div class="minimized" fxLayout="column" (click)="maximizeClick()">
<div class="title-wrapper" fxLayoutAlign="center end" >
<h2 class="title">
{{ title }}
</h2>
</div>
</div>
Do you know how to implement that?

I don't know Angular but here is how we do with html/css/javascript. I hope you find a way to parse it to angular. =)