Skip to content

Commit

Permalink
fix(search-tab): Improved search-tab of the projects page
Browse files Browse the repository at this point in the history
Styled the search-tab to match the design theme of the website
  • Loading branch information
ArvindParekh committed Mar 12, 2023
1 parent 6dd3d23 commit 13a0c15
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/GetProjects.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const GetProjects = () => {
onRemove={getSelectedValues}
placeholder="Filter By Tech Stack"
ref={multiselectRef}
className="bg-[#FEFEFE] text-[#314c89]"
className="bg-[#FEFEFE] text-[#314c89] w-full border-slate-200 px-2 outline-none placeholder:text-slate-700 contrast-more:border-slate-400 contrast-more:placeholder:text-slate-500 rounded-3xl bg-opacity-[.2] shadow backdrop-blur-3xl"
showCheckbox={true}
closeOnSelect={true}
avoidHighlightFirstOption={true}
Expand Down
8 changes: 8 additions & 0 deletions src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,14 @@ h6 {
@apply translate-x-0 transform rounded-full rounded-bl-none bg-gray-900 font-medium text-white shadow-2xl hover:translate-y-1 hover:bg-[rgb(29,161,242)] hover:shadow-md;
}

#multiselectContainerReact .searchWrapper{
@apply border-none;
}

#multiselectContainerReact .searchWrapper input{
@apply placeholder:text-slate-700 text-white font-bold;
}

#get-projects-scroll{
overflow: hidden;

Expand Down

0 comments on commit 13a0c15

Please sign in to comment.