Skip to content

Instantly share code, notes, and snippets.

@DenisCangemi
Last active January 25, 2021 00:59
Show Gist options
  • Save DenisCangemi/2e9b305d2cac4d9700d90b1a1110ade2 to your computer and use it in GitHub Desktop.
Save DenisCangemi/2e9b305d2cac4d9700d90b1a1110ade2 to your computer and use it in GitHub Desktop.
<ul *ngFor="let product of products">
<li>
<p [ngStyle]="{'font-size.px':20}">{{ product.name }}</p>
<span [style.color]="getAvailabilityColor(product.status)">{{product.status}}</span>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment