Merge pull request #303 from Stremio/larger-video-thumbnails

This commit is contained in:
Nikola Hristov 2022-10-05 11:16:45 +03:00 committed by GitHub
commit ce9dac1df9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 5 deletions

View file

@ -71,7 +71,7 @@ const Video = ({ className, id, title, thumbnail, episode, released, upcoming, w
renderFallback={() => (
<Icon
className={styles['placeholder-icon']}
icon={'ic_broken_link'}
icon={'ic_stremio_tray'}
/>
)}
/>

View file

@ -26,7 +26,7 @@
.thumbnail {
display: block;
width: 5rem;
width: 7.5rem;
height: 5rem;
object-fit: contain;
object-position: center;
@ -35,10 +35,12 @@
.placeholder-icon {
display: block;
width: 5rem;
width: 7.5rem;
height: 5rem;
padding: 0.5rem;
fill: @color-secondaryvariant1-light3-90;
padding: 1rem;
fill: @color-surface-light5;
background-color: @color-surface-light5-40;
opacity: 0.25;
}
}