Skip to content

Commit 2552eb6

Browse files
authored
Merge pull request #152 from Rishabhk06/feature/paragraphfixed
Added margin top to fix hiding of paragraph
2 parents be8eda8 + 24f9faf commit 2552eb6

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/pages/Contact.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ const Contact = () => {
5858
return (
5959
<Container>
6060
<h1 className="mt-4">Contact Us</h1>
61-
<p>Ideas? Comments? Critiques? Want to help out? Here’s how to get in contact:</p>
61+
<p className='mt-p'>
62+
Ideas? Comments? Critiques? Want to help out? Here’s how to get in contact:
63+
</p>
6264
<Row className='contact-card-one'>
6365
<Col md={6}>
6466
<div className='contact-card' style={{ color: '#E74D3C' }}>

src/styles/Contact.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,7 @@
2020
font-size: small;
2121
padding: 0;
2222
margin: 0;
23-
}
23+
}
24+
.mt-p {
25+
margin-top: 5em;
26+
}

0 commit comments

Comments
 (0)