Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: footer elements not centered #1076

Merged
merged 5 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Footer/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@
.join-us-list {
position: relative;
top: -10px;
margin-left: 70px;
/* margin-left: 70px; */
}
.join h1 {
margin-left: 60px;
Expand Down
14 changes: 3 additions & 11 deletions src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -286,31 +286,23 @@ const Footer = () => {
GitHub
</a>
</li>
<li className="mb-2">
<Link
to="/contact"
className="text-decoration-none footer_auth_text"
>
Contact Us
</Link>
</li>
</ul>
</div>
</div>
<div className="mt-4 col-lg-4 col-md-6 mb-lg-0 mx-auto">
<p className="h6 headings text-uppercase text-light font-weight-bold mb-2 text-center">
Got something to report ?
Talk to us
</p>
<p className="text-center mb-lg-4" style={{ color: "#d8d7d7" }}>
You can submit a report to us by filling the form below !
Ideas, problems, violations ? Reach out to us !
</p>
<div className="d-flex justify-content-center rounded mx-auto">
<button
onClick={handleReportModalOpen}
className=" btn-report d-flex align-items-center text-black"
>
<span>
Report! <i className="fa-solid fa-bug"></i>
Contact Us <i className="fa-solid fa-bug"></i>
</span>
</button>
</div>
Expand Down
Loading