Fixed Search conversations input box was out of bounds (#41)
This commit is contained in:
parent
3d0e783006
commit
5b6968a6be
|
@ -18,7 +18,7 @@ export const Search: FC<Props> = ({ searchTerm, onSearch }) => {
|
||||||
return (
|
return (
|
||||||
<div className="relative flex items-center sm:pl-2 px-2 mb-2">
|
<div className="relative flex items-center sm:pl-2 px-2 mb-2">
|
||||||
<input
|
<input
|
||||||
className="flex-1 pr-10 bg-[#202123] border border-neutral-600 text-sm rounded-lg px-4 py-2 text-white"
|
className="flex-1 w-full pr-10 bg-[#202123] border border-neutral-600 text-sm rounded-lg px-4 py-2 text-white"
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Search conversations..."
|
placeholder="Search conversations..."
|
||||||
value={searchTerm}
|
value={searchTerm}
|
||||||
|
|
Loading…
Reference in New Issue