Skip to content

Commit

Permalink
fix: 최소 너비 반영 및 푸터 이슈 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
miro-ring committed Feb 23, 2024
1 parent 0226e45 commit 67f5290
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/components/Layout/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import * as styles from '../style.css';
const Footer = () => {
return (
<footer className={styles.footerWrapper}>
<div>
<div>
<div className={styles.footerContent}>
<div className={styles.footerLinks}>
<Link href="mailto:[email protected]" className={styles.footerButton}>
서비스메일
</Link>
Expand All @@ -31,7 +31,7 @@ const Footer = () => {
<span className={styles.instagramText}>인스타그램</span>
</Link>
</div>
<div>
<div className={styles.footerContent}>
<div className={styles.baroIcon}>
<Icon icon="logo32" width={32} height={36} />
</div>
Expand Down
14 changes: 13 additions & 1 deletion src/components/Layout/style.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const header = style({
padding: '0 24px',
backgroundColor: COLORS['Grey/900'],
zIndex: 100,
minWidth: '768px',
});

export const logo = style({
Expand Down Expand Up @@ -94,6 +95,15 @@ export const footerWrapper = style({
backgroundColor: COLORS['Grey/700'],
display: 'flex',
justifyContent: 'space-between',
minWidth: '768px',
});

export const footerContent = style({
height: '80px',
});

export const footerLinks = style({
marginBottom: '8px',
});

const dot = style({
Expand Down Expand Up @@ -130,7 +140,6 @@ export const instagramLink = style([
}),
{
color: COLORS['Grey/400'],
marginTop: '8px',
},
]);

Expand All @@ -156,6 +165,7 @@ export const copyright = style([
}),
{
color: COLORS['Grey/400'],
whiteSpace: 'nowrap',
},
]);

Expand All @@ -178,6 +188,8 @@ export const backgroundColorMain = createVar();
export const mainWrapper = style({
backgroundColor: backgroundColorMain,
paddingTop: '64px',
minWidth: '768px',
minHeight: 'calc(100vh - 160px)',
});

export const tab = style({
Expand Down
4 changes: 1 addition & 3 deletions src/domain/landing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,7 @@ const Landing = () => {
<SecondLanding className={styles.ladingImage} />
<ThirdLanding className={styles.ladingImage} />
<FourthLanding className={styles.ladingImage} />
<FifthLanding
className={clsx(styles.ladingImage, styles.lastLandingImage)}
/>
<FifthLanding className={styles.ladingImage} />
<Button className={styles.startButton} onClick={handleLoginButtonClick}>
<div className={styles.buttonText}>바로 시작하기</div>
</Button>
Expand Down

0 comments on commit 67f5290

Please sign in to comment.