Skip to content

Commit

Permalink
Fixing unclickable posters including pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
twanariens committed Feb 3, 2021
1 parent ff7862f commit 8024be5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<img [routerLink]="generateDetailsLink()" id="cardImage" src="{{result.posterPath}}" class="image"
alt="{{result.title}}">
<div class="middle">
<a class="poster-overlay">
<a class="poster-overlay" [routerLink]="generateDetailsLink()">
<div class="summary">
<div class="title">{{result.title}}</div>
<div class="small-text ellipsis">{{result.overview}}</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,4 +236,8 @@ a.poster-overlay:hover{
.top-right span.indicator{
padding-right:1em;
}
}

.ombi-card #cardImage:hover{
cursor: pointer;
}

0 comments on commit 8024be5

Please sign in to comment.