Skip to content

Commit

Permalink
Fix for overlay of the social icons container
Browse files Browse the repository at this point in the history
  • Loading branch information
twanariens committed Apr 6, 2021
1 parent b61d530 commit f8d44ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<mat-spinner [color]="'accent'"></mat-spinner>
</div>

<div *ngIf="movie" class="dark-theme">
<div *ngIf="movie" class="main-content-container">

<top-banner [background]="movie.background" [available]="movie.available" [title]="movie.title" [releaseDate]="movie.releaseDate" [tagline]="movie.tagline"></top-banner>
<div class="social-icons-container">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div *ngIf="!tv" class="justify-content-md-center top-spacing loading-spinner">
<mat-spinner [color]="'accent'"></mat-spinner>
</div>
<div *ngIf="tv">
<div *ngIf="tv" class="main-content-container">
<div *ngIf="tv.id === 0; else main">
<div class="small-middle-container no-info">
<h1><i class="far fa-frown-o" aria-hidden="true"></i></h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@
margin-left:10px;
}

.dark-theme{
.main-content-container{
position:relative;
}

Expand Down

0 comments on commit f8d44ec

Please sign in to comment.