Skip to content
This repository has been archived by the owner on Apr 19, 2021. It is now read-only.

Commit

Permalink
small fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
nisarhassan12 committed Jan 19, 2021
1 parent c449143 commit 7c36a14
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions src/components/index/GetStarted.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ const StyledGetStarted = styled.div`
}
}
}
h3 {
text-align: center;
font-weight: 400;
}
`

const GetStarted = () => (
Expand Down
8 changes: 4 additions & 4 deletions src/components/index/TextFeature.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ const StyledTextFeature = styled.div`
@media (max-width: 500px) {
padding: 5rem 2rem;
h3 {
.h3 {
text-align: center;
}
}
h3 + p {
.h3 + p {
margin: 0;
}
Expand Down Expand Up @@ -50,9 +50,9 @@ const TextFeature = ({ img, title, text, btnText, href }: TextFeatureProps) => (
<div className="img-container">
{img}
</div>
<h3>
<h2 className="h3">
<strong>{title}</strong>
</h3>
</h2>
<p>{text}</p>
{btnText ? (
<a href={href} target="_blank" className="btn">
Expand Down

0 comments on commit 7c36a14

Please sign in to comment.