Skip to content

Commit

Permalink
chnage
Browse files Browse the repository at this point in the history
  • Loading branch information
subodhkangale07 committed Nov 6, 2024
1 parent 4270476 commit 1df6c33
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion client/package-lock.json

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

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"react-loader-spinner": "^6.1.6",
"react-responsive": "^10.0.0",
"react-router-dom": "^6.27.0",
"react-scripts": "5.0.1",
"react-scripts": "^5.0.1",
"react-spring": "^9.7.4",
"react-toastify": "^10.0.5",
"react-visibility-sensor": "^5.1.1",
Expand Down
16 changes: 9 additions & 7 deletions client/src/components/MultiStepRegistration.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,16 +150,18 @@ function MultiStepRegistration() {
}}
>
<div
className={`steps-container ${dark === 'dark' ? 'bg-gray-900 text-yellow-400' : 'bg-white text-gray-700'} transition-colors duration-300 p-4 rounded-lg`}
className={`steps-container ${dark === 'dark'
? 'bg-gray-900 text-purple-400'
: 'bg-gray-200 text-gray-900'} transition-colors duration-300 p-4 rounded-lg`}
>
<Steps current={currentStep} onChange={handleNextStepValidation}>
<Step
title={
<span
className={
dark === 'dark'
? 'font-bold text-yellow-400'
: 'font-bold text-gray-700'
? ' font-bold text-purple-400'
: ' font-bold text-gray-900'
}
>
Basic details
Expand All @@ -172,8 +174,8 @@ function MultiStepRegistration() {
<span
className={
dark === 'dark'
? 'font-bold text-yellow-400'
: 'font-bold text-gray-700'
? ' font-bold text-purple-400'
: ' font-bold text-gray-900'
}
>
Other details
Expand All @@ -186,8 +188,8 @@ function MultiStepRegistration() {
<span
className={
dark === 'dark'
? 'font-bold text-yellow-400'
: 'font-bold text-gray-700'
? ' font-bold text-purple-400'
: ' font-bold text-gray-900'
}
>
Review and Register
Expand Down

0 comments on commit 1df6c33

Please sign in to comment.