I have currently the following definition:
<div class="div-container">
<mat-icon>new_release</mat-icon>
<span> </span>
<a><span>VO/YI/AI 1 HJ.2022a;</span></a>
<span> </span>
<a><span>ABC/BBC/VOA 7.2022;</span></a>
<span> </span>
<a><span>UN/AIDA 16.8.2022</span></a>
</div>
with
.div-container{
display: flex;
align-items: center;
}
a{
display: inline!important;
}
which results in a display like
What I would like to have is the image on the left side and than floating text, e.g.
VO/YI/AI 1 HJ.2022a; ABC/BBC/VOA 7.2022; UN/AIDA 16.8.2022
or if the space is too less on the left side the icon and something like
VO/YI/AI 1 HJ.2022a; ABC/BBC/VOA
7.2022; UN/AIDA 16.8.2022
Honestly don't know if the flex is required or not. But the icon should be positioned vertically centered on the left.
