Skip to content

Commit

Permalink
๐Ÿ’„ Style: footer ui ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
hyuke81 committed Nov 26, 2024
1 parent 48370fb commit e3578cc
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import githubIcon from '../../assets/icons/github.png';

const footerStyle = css`
display: flex;
height: 200px;
height: 150px;
flex-direction: column;
justify-content: center;
align-items: center;
Expand All @@ -18,15 +18,14 @@ const footerStyle = css`
const mailStyle = css`
color: gray;
font-family: 'Pretendard';
font-size: 14px;
font-size: 13px;
font-style: normal;
margin-bottom: 10px;
`;

const textStyle = css`
color: #6a6a6a;
font-family: 'Pretendard-Medium';
font-size: 16px;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 24px;
Expand All @@ -36,7 +35,7 @@ const Footer = () => {
return (
<div css={footerStyle}>
{/* ๋กœ๊ณ  ์ด๋ฏธ์ง€ */}
<img src={logoImage} alt="Logo" width="200px" />
<img src={logoImage} alt="Logo" width="130px" />
{/* ์ด๋ฉ”์ผ ์ฃผ์†Œ */}
<h3 css={mailStyle}>[email protected]</h3>
{/* ์ €์ž‘๊ถŒ */}
Expand Down

0 comments on commit e3578cc

Please sign in to comment.