Make search bar sticky on search results page
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
2236414a30
commit
3dd3e67a63
1 changed files with 5 additions and 1 deletions
|
@ -149,7 +149,11 @@ const Search = (props: ISearch) => {
|
|||
}, []);
|
||||
|
||||
return (
|
||||
<div className='w-full'>
|
||||
<div
|
||||
className={clsx('w-full', {
|
||||
'sticky top-[124px] z-10 bg-white/90 backdrop-blur black:bg-black/80 dark:bg-primary-900/90': !openInRoute,
|
||||
})}
|
||||
>
|
||||
<label htmlFor='search' className='sr-only'>{intl.formatMessage(messages.placeholder)}</label>
|
||||
|
||||
<div className='relative'>
|
||||
|
|
Loading…
Reference in a new issue