Skip to content

Commit

Permalink
fix homepage input css
Browse files Browse the repository at this point in the history
  • Loading branch information
sspenst committed May 25, 2024
1 parent ecebdfa commit b1e59d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ export default function Home({
<div className='flex items-center justify-center'>
<div className='flex flex-col'>
<div className='flex items-center'>
<form action='/search'>
<form className='w-full' action='/search'>
<input type='hidden' name='timeRange' value='All' />
<input onChange={e => setSearch(e.target.value)} id='search' type='search' name='search' className='rounded-r-none rounded-b-none' placeholder='Search levels...' aria-label='Search' />
<input onChange={e => setSearch(e.target.value)} id='search' type='search' name='search' className='rounded-r-none rounded-b-none w-full' placeholder='Search levels...' aria-label='Search' />
</form>
</div>
<div>
Expand Down

0 comments on commit b1e59d6

Please sign in to comment.