mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 21:04:37 +03:00
Fix oversized movie images on scrape dialog (#961)
This commit is contained in:
@@ -180,13 +180,13 @@ export const MovieScrapeDialog: React.FC<IMovieScrapeDialogProps> = (
|
|||||||
/>
|
/>
|
||||||
<ScrapedImageRow
|
<ScrapedImageRow
|
||||||
title="Front Image"
|
title="Front Image"
|
||||||
className="front-image"
|
className="movie-image"
|
||||||
result={frontImage}
|
result={frontImage}
|
||||||
onChange={(value) => setFrontImage(value)}
|
onChange={(value) => setFrontImage(value)}
|
||||||
/>
|
/>
|
||||||
<ScrapedImageRow
|
<ScrapedImageRow
|
||||||
title="Back Image"
|
title="Back Image"
|
||||||
className="front-image"
|
className="movie-image"
|
||||||
result={backImage}
|
result={backImage}
|
||||||
onChange={(value) => setBackImage(value)}
|
onChange={(value) => setBackImage(value)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -252,6 +252,10 @@ textarea.scene-description {
|
|||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.movie-image {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.movie-table {
|
.movie-table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user