Skip to content

Commit

Permalink
fixed dark-mode bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
nishant0708 committed Jun 23, 2024
1 parent ebf0504 commit 8f28a31
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/review/review.css
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ section
position: relative;
margin-bottom: 35px;
}
.active .review-container .reviewForm .formBox .inputBox input {
.active .review-container .reviewForm .formBox .inputBox .input-review {
background-color: #000016 !important;
color: white;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/review/review.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ const ReviewPage = () => {
<div className="formBox">
<div className="inputBox w100">
<label>Name</label>
<input placeholder="Manav Malhotra" type="text" name="name" value={formData.name} onChange={handleChange} required />
<input className="input-review" placeholder="Manav Malhotra" type="text" name="name" value={formData.name} onChange={handleChange} required />
</div>
<div className="inputBox w100">
<label>Email Address</label>
<input placeholder="[email protected]" type="email" name="email" value={formData.email} onChange={handleChange} required />
<input className="input-review" placeholder="[email protected]" type="email" name="email" value={formData.email} onChange={handleChange} required />
</div>
<label>Rate Us</label>
<div className="inputBox w100">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
.footer-item .footer-text {
font-size: 1rem;
font-weight: 600;
color: black;

margin: 1rem 0;
}

Expand Down

0 comments on commit 8f28a31

Please sign in to comment.