Skip to content

Commit

Permalink
Merge pull request #11 from potato-club/add/footer
Browse files Browse the repository at this point in the history
Add/footer
  • Loading branch information
JoGeumJu authored Jan 31, 2023
2 parents 3f2eb78 + 05fc092 commit f56a593
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import styled from "styled-components";
import { useState } from "react";
import { FooterCompany } from "./FooterCompany";
import { FooterLogin } from "./FooterLogin";
import { customColor } from "../customColor";

export const Footer = () => {
const [isLogin, setIsLogin] = useState(false);
Expand All @@ -15,6 +16,8 @@ export const Footer = () => {

const Wrapper = styled.div`
display: flex;
z-index: 5;
flex-direction: column;
width: 100%;
box-shadow: 0px -4px 4px 0px ${customColor.black + "33"};
`;

0 comments on commit f56a593

Please sign in to comment.