Skip to content
Snippets Groups Projects
Commit 25f60892 authored by jojohoch's avatar jojohoch
Browse files

[player] Use minimal height setting for dynamic elements

parent 606ca01f
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@
<ng-container *ngFor="let element of section.elements; let i = index">
<app-element-container
[style.min-width.px]="element.width"
[style.min-height.px]="element.height"
[style.min-height.px]="element.useMinHeight ? element.height : 0"
[style.margin-left.px]="element.marginLeft"
[style.margin-right.px]="element.marginRight"
[style.margin-top.px]="element.marginTop"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment