Fix oversized movie images on scrape dialog (#961)

This commit is contained in:
peolic 2020-11-26 01:33:41 +02:00 committed by GitHub
parent 7d37e3e564
commit 89277f1e25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -180,13 +180,13 @@ export const MovieScrapeDialog: React.FC<IMovieScrapeDialogProps> = (
/>
<ScrapedImageRow
title="Front Image"
className="front-image"
className="movie-image"
result={frontImage}
onChange={(value) => setFrontImage(value)}
/>
<ScrapedImageRow
title="Back Image"
className="front-image"
className="movie-image"
result={backImage}
onChange={(value) => setBackImage(value)}
/>

View file

@ -252,6 +252,10 @@ textarea.scene-description {
max-width: 100%;
}
.movie-image {
max-width: 100%;
}
.movie-table {
width: 100%;