Skip to content

Commit

Permalink
Merge pull request #372 from Kiran-pande-30/contact_us_heading
Browse files Browse the repository at this point in the history
Fix: Contact us Heading added
  • Loading branch information
Mansi168 authored Aug 9, 2024
2 parents c021b7c + 1f38172 commit b26409f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
12 changes: 9 additions & 3 deletions src/components/Contact/contact.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@
transition-property: opacity, transform;
}
}
.contact-heading{
color: rgb(85 253 150);
text-align: center;
}
.contact-title{
font-size: 3rem;
font-weight: 500;
}

.contact-container {
position: relative;
Expand Down Expand Up @@ -148,6 +156,4 @@
.contact-container{
margin-top: 0px;
}


}
}
8 changes: 4 additions & 4 deletions src/components/Contact/contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ const Contact = () => {

return (
<section>
<div className='contact-heading'>
<h1 className='contact-title'>Contact Us</h1>
</div>
<div className="contact-container" data-aos="fade down">
<div className="contactInfo">
<div>
{/* Contact info section */}
</div>
</div>
<div className="contactForm">
<h2>Send a Message</h2>
Expand Down Expand Up @@ -92,4 +92,4 @@ const Contact = () => {
);
};

export default Contact;
export default Contact;

0 comments on commit b26409f

Please sign in to comment.