I need help aligning a mat-icon next to text in a label
Html:
<label>
<mat-icon>warning</mat-icon>
Warning
</label>
Css:
label {
font-size: 0.6rem;
font-family: Verdana, sans-serif;
border-radius: 15px;
padding: 5px;
font-weight: bold;
background-color: red;
color: black;
text-transform: uppercase;
}
mat-icon {
transform: scale(0.5);
}
This is how it looks like now:
You can use flexbox css :