mirror of
https://github.com/stashapp/stash.git
synced 2025-12-14 04:13:56 +01:00
Fix oversized movie images on scrape dialog (#961)
This commit is contained in:
parent
7d37e3e564
commit
89277f1e25
2 changed files with 6 additions and 2 deletions
|
|
@ -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)}
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -252,6 +252,10 @@ textarea.scene-description {
|
|||
max-width: 100%;
|
||||
}
|
||||
|
||||
.movie-image {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.movie-table {
|
||||
width: 100%;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue