Fixed manual search modal matches popover position and width.

This commit is contained in:
morpheus65535 2021-03-28 23:56:01 -04:00
parent b50e7f4fff
commit 1613501ea4
2 changed files with 5 additions and 1 deletions

View File

@ -34,3 +34,7 @@ body {
max-width: 500px;
}
}
#manual-search-matches-info {
width: 100%;
}

View File

@ -309,7 +309,7 @@ const StateIcon: FunctionComponent<{ matches: string[]; dont: string[] }> = ({
);
return (
<OverlayTrigger overlay={popover}>
<OverlayTrigger overlay={popover} placement={"left"}>
<FontAwesomeIcon icon={icon} color={color}></FontAwesomeIcon>
</OverlayTrigger>
);