diff --git a/src/app/(features)/dictionary/SearchForm.tsx b/src/app/(features)/dictionary/SearchForm.tsx index 3720992..f814061 100644 --- a/src/app/(features)/dictionary/SearchForm.tsx +++ b/src/app/(features)/dictionary/SearchForm.tsx @@ -38,18 +38,18 @@ export function SearchForm({ {/* 搜索表单 */} -
+ ) => onSearchQueryChange(e.target.value)} placeholder={t("searchPlaceholder")} - className="flex-1 px-4 py-3 text-lg text-gray-800 focus:outline-none border-b-2 border-gray-600 bg-white/90 rounded" + className="flex-1 min-w-0 px-4 py-3 text-lg text-gray-800 focus:outline-none border-b-2 border-gray-600 bg-white/90 rounded" /> {isSearching ? t("searching") : t("search")}