mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-04-14 00:11:29 +03:00
Recent videos now supports 2 card sizes
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
<div>
|
<div>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div *ngFor="let file of files" class="col-6 col-lg-4 mb-2 mt-2 file-col">
|
<div *ngFor="let file of files" [ngClass]="[ card_size === 'small' ? 'col-2 mb-2 mt-2 file-col' : '', card_size === 'medium' ? 'col-6 col-lg-4 mb-2 mt-2 file-col' : '' ]">
|
||||||
<app-unified-file-card (goToFile)="goToFile($event)" (goToSubscription)="goToSubscription($event)" [file_obj]="file"></app-unified-file-card>
|
<app-unified-file-card [card_size]="card_size" (goToFile)="goToFile($event)" (goToSubscription)="goToSubscription($event)" [file_obj]="file"></app-unified-file-card>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ export class RecentVideosComponent implements OnInit {
|
|||||||
normal_files_received = false;
|
normal_files_received = false;
|
||||||
subscription_files_received = false;
|
subscription_files_received = false;
|
||||||
files: any[] = null;
|
files: any[] = null;
|
||||||
|
card_size = 'medium';
|
||||||
|
|
||||||
constructor(private postsService: PostsService, private router: Router) { }
|
constructor(private postsService: PostsService, private router: Router) { }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user