Skip to content

Commit

Permalink
feat: adjust subject input width
Browse files Browse the repository at this point in the history
  • Loading branch information
jsun969 committed Sep 26, 2024
1 parent fe6bc2c commit 2aaa833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SearchForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const SearchForm = () => {
<Autocomplete
defaultItems={subjectList}
label={t('search.choose-subject')}
className="w-[22rem] mobile:w-full"
className="w-96 mobile:w-full"
selectedKey={subject}
onSelectionChange={(key) => setSubject(key as string)}
listboxProps={{ emptyContent: t('search.subject-not-found') }}
Expand Down

0 comments on commit 2aaa833

Please sign in to comment.