Skip to content

Commit

Permalink
Increase width of the manually search modal
Browse files Browse the repository at this point in the history
  • Loading branch information
LASER-Yi committed Jun 11, 2023
1 parent bc40aba commit 963ce21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/modals/ManualSearchModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,12 @@ function ManualSearchView<T extends SupportType>(props: Props<T>) {
export const MovieSearchModal = withModal<Props<Item.Movie>>(
ManualSearchView,
"movie-manual-search",
{ title: "Search Subtitles", size: "xl" }
{ title: "Search Subtitles", size: "calc(100vw - 4rem)" }
);
export const EpisodeSearchModal = withModal<Props<Item.Episode>>(
ManualSearchView,
"episode-manual-search",
{ title: "Search Subtitles", size: "xl" }
{ title: "Search Subtitles", size: "calc(100vw - 4rem)" }
);

const StateIcon: FunctionComponent<{ matches: string[]; dont: string[] }> = ({
Expand Down

0 comments on commit 963ce21

Please sign in to comment.