Skip to content

Commit 03d0574

Browse files
authored
Merge pull request #868 from AppQuality/UTT-53-fix-add-item-icon
🔨 refactor(TitleDropdown.tsx): adjust style properties for Menu component
2 parents 880d73d + 6a80cff commit 03d0574

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/Video/components/TitleDropdown.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export const TitleDropdown = ({
137137
)}
138138
</Autocomplete>
139139
</Field>
140-
<Menu style={{ maxHeight: '205px' }}>
140+
<Menu style={{ maxHeight: '200px', maxWidth: '290px' }}>
141141
{matchingOptions && matchingOptions.length ? (
142142
matchingOptions.map((item) => (
143143
<Item key={item.id} value={item}>
@@ -164,7 +164,7 @@ export const TitleDropdown = ({
164164
name: inputValue,
165165
}}
166166
>
167-
<MediaFigure>
167+
<MediaFigure style={{ flexShrink: 0 }}>
168168
<AddIcon />
169169
</MediaFigure>
170170
<MediaBody>

0 commit comments

Comments
 (0)