Skip to content
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

fix: changed project input background and updated yarn.lock file #1028 #1189

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
a7b6d8b
fix:added prefix to headers in contributor card component
jibola2588 May 23, 2023
b8502d3
fix:added prefix to headers in contributor card component
jibola2588 May 23, 2023
e332b4c
added project to the project list
jibola2588 May 24, 2023
822816f
added project to the project list
jibola2588 May 24, 2023
611f956
refactor the hero section of the home page
jibola2588 May 24, 2023
d2efbe9
fix issues in local
jibola2588 May 25, 2023
17656c5
Merge branch 'main' of https://github.com/jibola2588/ProjectsHut into…
jibola2588 May 25, 2023
8d6fcff
added array of objects inside homepage-image file
jibola2588 May 25, 2023
b097a36
changed the background color of scroll buton to align with dark mode …
jibola2588 May 27, 2023
e72a8ef
Merge branch 'main' of https://github.com/jibola2588/ProjectsHut into…
jibola2588 Jun 8, 2023
ddaceb2
fix: add focus to project page input, ensure focus functionality , fi…
jibola2588 Jun 10, 2023
9672ec9
fix: add focus to project page input, ensure focus functionality , fi…
jibola2588 Jun 10, 2023
1dd35f9
fix: add focus to project page input, ensure focus functionality , fi…
jibola2588 Jun 10, 2023
93070fd
fix: add focus to project page input, ensure focus functionality , fi…
jibola2588 Jun 10, 2023
dc97975
fix: add focus to project page input, ensure focus functionality , fi…
jibola2588 Jun 12, 2023
df4ff15
fix: add color to input text to adjust to both light and dark mode, f…
jibola2588 Jun 13, 2023
38acbfb
fix: add color to input text to adjust to both light and dark mode, f…
jibola2588 Jun 13, 2023
823760c
Merge branch 'main' into fix-changed-project-input-background
jibola2588 Jun 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src/CSS/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ body {
animation-iteration-count: infinite;
}

input.custom {
caret-color: purple;
}

@tailwind components;
@tailwind utilities;

Expand Down
6 changes: 4 additions & 2 deletions src/pages/ProjectsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import { ThemeContext } from '../context/Theme';
function ProjectsPage() {
const Projects = [];
const { theme } = useContext(ThemeContext);

projects.forEach((project) => {
const username = project.github_username;
project.Projects.forEach((proj) => {
Expand Down Expand Up @@ -98,8 +99,9 @@ function ProjectsPage() {
type="text"
id="combo-box-demo"
placeholder="Thea Theme"
className="hover:bg-slate-200 border-solid border-2 outline-none border-primary rounded-md p-2 md:w-1/2"
style={{ color: 'black' }}
className={`custom border-solid border-2 outline-none border-primary rounded-md p-2 md:w-1/2 bg-transparent ${
theme.mode === 'light' ? 'text-black' : 'text-white'
}`}
onChange={handleChange}
value={searchValue}
/>
Expand Down