Skip to content

Commit

Permalink
Merge pull request #393 from DharshiBalasubramaniyam/new-project-display
Browse files Browse the repository at this point in the history
fixed New project page display issue
  • Loading branch information
SUGAM-ARORA authored Jun 30, 2024
2 parents 19b5246 + 3220576 commit 588895a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/Components/menu_section/new_project/NewProject.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@ form {
width: 100%;
color: white;
margin-bottom: 18px;
animation-name: fadeIn;
animation-name: Animate;
animation-duration: 1s;
animation-fill-mode: forwards;
animation-iteration-count: 1;
opacity: 0;
transform: translateY(10px);
transform: scale(0.5);

}
input, textarea {
width: 100%;
Expand Down Expand Up @@ -108,7 +107,7 @@ span {
font-size: 14px;
margin-bottom: 5px;
}
@keyframes fadeIn {
@keyframes Animate {
0% {
transform: translateY(20px);
transform: scale(0.5);
Expand Down
2 changes: 1 addition & 1 deletion src/Components/menu_section/new_project/NewProject.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function NewProject() {
setSelectedSkills(prev => [...prev, val])
}
setSuggestions([])
onInputChange("skill", "")
setData(prev => ({ ...prev, "skill": "" }));
}

const removeSkill = (val) => {
Expand Down

0 comments on commit 588895a

Please sign in to comment.