-
-
Notifications
You must be signed in to change notification settings - Fork 559
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added search bar for sidebar. #133
Added search bar for sidebar. #133
Conversation
Created two search hooks: - useSearch: Manages search input and allows to use debounced search - useSidebarSearch: Uses previous hook to get data from database and filter it if needed closes #114
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank for contributing, it looks great, but there's some small issues needs to be fixed:
- Searchbar overlapping in small screen i.e It's not responsive
It's should be in the sidebar
- Color contrast
on-focus
is too much, and it does not match with our theme.
Make it eitherviolet
orgray
- Background color should be as same as sidebar background color
applications theme. Moved Searchbar component inside the menu container to inherit responsiveness
Thank you, could you please resolve conflicts? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks perfecct
Co-authored-by: Rupali Haldiya <78981177+rupali-codes@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
Created two search hooks:
Closes #114