Fix width of image selection arrow div (#4142)

This commit is contained in:
Flashy78
2023-09-24 19:24:08 -07:00
committed by GitHub
parent ce55392461
commit bba60cc45b
2 changed files with 7 additions and 1 deletions

View File

@@ -402,7 +402,7 @@ export const ScrapedImagesRow: React.FC<IScrapedImagesRowProps> = (props) => {
/> />
)} )}
renderNewField={() => ( renderNewField={() => (
<div> <div className="image-selection-parent">
<ImageSelector <ImageSelector
imageClassName={props.className} imageClassName={props.className}
images={props.images} images={props.images}

View File

@@ -144,6 +144,10 @@
padding-right: 15px; padding-right: 15px;
} }
.image-selection-parent {
min-width: 100%;
}
.image-selection { .image-selection {
.select-buttons { .select-buttons {
align-items: center; align-items: center;
@@ -369,6 +373,7 @@ div.react-datepicker {
.react-datepicker__day { .react-datepicker__day {
color: $text-color; color: $text-color;
&.react-datepicker__day--disabled { &.react-datepicker__day--disabled {
color: $text-muted; color: $text-muted;
} }
@@ -438,6 +443,7 @@ div.react-datepicker {
} }
} }
} }
/* stylelint-enable */ /* stylelint-enable */
#date-picker-portal .react-datepicker-popper { #date-picker-portal .react-datepicker-popper {