fix column switching

This commit is contained in:
Nicolas Constant 2019-08-13 00:48:23 -04:00
parent 1c6b0784db
commit cc45d7fb25
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
2 changed files with 4 additions and 3 deletions

View File

@ -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>

View File

@ -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;
}
}