fix column switching
This commit is contained in:
parent
1c6b0784db
commit
cc45d7fb25
|
@ -1,5 +1,5 @@
|
|||
<div class="main-display flexcroll">
|
||||
<div class="main-display__stream-column" *ngFor="let s of streamElements$ | async">
|
||||
<app-stream [streamElement]="s" #stream></app-stream>
|
||||
<div class="main-display__stream-column" *ngFor="let s of streamElements$ | async" #stream>
|
||||
<app-stream [streamElement]="s"></app-stream>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -6,13 +6,14 @@
|
|||
overflow-y: hidden;
|
||||
&__stream-column {
|
||||
height: calc(100%);
|
||||
width: $stream-column-width + $stream-column-separator;
|
||||
width: calc(#{$stream-column-width} + #{$stream-column-separator});
|
||||
display: inline-block;
|
||||
overflow-x: hidden;
|
||||
overflow-y: hidden;
|
||||
white-space: normal;
|
||||
// margin: 0 0 0 $stream-column-separator;
|
||||
margin: 0;
|
||||
// border: 1px solid greenyellow;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue