aboutsummaryrefslogtreecommitdiff
path: root/sandbox/test-projekat-danijel/frontend/src/app/page-two/page-two.component.html
blob: 24719f71b42215a5d5d3b23de1f71ed19d9cf155 (plain) (blame)
1
2
3
4
5
6
7
<button type="button" (click)="goToAddColor()">DODAJ BOJU</button><br><br>

<div style="display: flex; flex-direction: column-reverse;" *ngIf="colors">
    <div *ngFor="let color of colors" [style.backgroundColor]="color" style="width: 100%; height: 100px;">

    </div>
</div>