.video-bottom {
display: flex;
- margin-top: 40px;
+ margin-top: 1.5rem;
.video-info {
flex-grow: 1;
display: flex;
width: max-content;
height: 100%;
- margin-bottom: 20px;
+ padding-bottom: 20px;
flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
.video-bottom {
margin-top: 20px !important;
- margin-bottom: 20px !important;
+ padding-bottom: 20px !important;
.video-info {
padding: 0;
</div>
</div>
- <div *ngFor="let video of (videos$ | async); let i = index; let length = count">
- <my-video-miniature [displayOptions]="displayOptions" [video]="video" [user]="user" (videoBlocked)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()">
+ <ng-container *ngFor="let video of (videos$ | async); let i = index; let length = count">
+ <my-video-miniature
+ [displayOptions]="displayOptions" [video]="video" [user]="user"
+ (videoBlocked)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()">
</my-video-miniature>
<hr *ngIf="!playlist && i == 0 && length > 1" />
- </div>
+ </ng-container>
</ng-container>
</div>