Design other videos in watch video page

pull/159/head
Chocobozzz 2017-12-06 18:10:57 +01:00
parent 6a9e1d42f8
commit 41c3dfac99
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 20 additions and 0 deletions

View File

@ -159,6 +159,10 @@
</div>
<div class="other-videos">
<div class="title-page title-page-single">
Other videos
</div>
<div *ngFor="let video of otherVideos">
<my-video-miniature [video]="video" [user]="user"></my-video-miniature>
</div>

View File

@ -158,6 +158,22 @@
}
}
}
}
.other-videos {
.title-page {
margin-top: 0;
}
/deep/ .video-miniature {
display: flex;
height: 100%;
margin-bottom: 20px;
.video-miniature-information {
margin-left: 10px;
}
}
}
}