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

[player] Remove min-height for dynamic sections

parent 0d016c21
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
overflow: 'auto', overflow: 'auto',
width: '100%', width: '100%',
'background-color': section.backgroundColor, 'background-color': section.backgroundColor,
'min-height.px': section.height}"> 'min-height': section.dynamicPositioning ? 'auto' : section.height + 'px'}">
</app-section> </app-section>
</div> </div>
<div appIntersectionDetection <div appIntersectionDetection
......
...@@ -19,8 +19,7 @@ ...@@ -19,8 +19,7 @@
<ng-template #dynamicElements> <ng-template #dynamicElements>
<div [style.display]="'grid'" <div [style.display]="'grid'"
[style.grid-template-columns]="section.gridColumnSizes" [style.grid-template-columns]="section.gridColumnSizes"
[style.grid-template-rows]="section.gridRowSizes" [style.grid-template-rows]="section.gridRowSizes">
[style.min-height.px]="section.height">
<div *ngFor="let element of section.elements; let i = index" <div *ngFor="let element of section.elements; let i = index"
[style.min-width.px]="element.width" [style.min-width.px]="element.width"
[style.min-height.px]="element.height" [style.min-height.px]="element.height"
......
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