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

Fixed minor issue of overflow footer on mobile view #20

Open
wants to merge 5 commits into
base: philip-react-migration
Choose a base branch
from
Open
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 blockchain-society-website/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function App() {
}, []);

return (
<div className="font-inter overflow-x-hidden App overflow-hidden ">
<div className="font-inter overflow-x-hidden App overflow-visible">
<Nav toggle={toggle}></Nav>
<Dropdown isOpen={isOpen} toggle={toggle}></Dropdown>
<Hero></Hero>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import {
import { IconContext } from "react-icons/lib";
import { useEffect } from "react";
import AOS from "aos";
// import "../../../styles/variables/Palette.scss";

function Footer() {
useEffect(() => {
Expand All @@ -28,9 +27,8 @@ function Footer() {
<p>[email protected]</p>
</a>
</div>
<div className="lg:flex lg:justify-between lg:mx-10 py-4">
<div className="lg:flex lg:justify-between lg:mx-10 py-2">
<p>© UW Blockchain Society. 2021. All rights reserved.</p>

<div className="flex justify-center">
<IconContext.Provider value={{ size: "36px" }}>
<FaFacebookSquare className="mr-4 transform hover:scale-110" />
Expand Down