12 lines
485 B
HTML
12 lines
485 B
HTML
<div [ngClass]="{ small: small }" class="rectangle-container">
|
|
<div *ngFor="let config of configs" [style]="'flex: ' + (config.length || 1) + ';'" class="section-wrapper">
|
|
<div
|
|
[className]="'rectangle ' + config.color"
|
|
[ngStyle]="{
|
|
'background-color': config.color.includes('#') ? config.color : ''
|
|
}"
|
|
></div>
|
|
<div *ngIf="config.label" [class]="config.cssClass">{{ config.label }}</div>
|
|
</div>
|
|
</div>
|