Skip to content

Commit e6ffabb

Browse files
authored
Merge pull request #185 from codeit-sprint-part3-6team/#59_페이지_대시보드_수정
페이지 대시보드 수정
2 parents c44ef85 + 50aae8c commit e6ffabb

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

src/components/product/landing/NavBar.module.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,14 @@
2121
.logo {
2222
width: 35px;
2323
height: 35px;
24+
cursor: pointer;
2425
}
2526

2627
.textlogo {
2728
width: 80px;
2829
height: 22px;
2930
margin-bottom: 6px;
31+
cursor: pointer;
3032
}
3133

3234
.link-container {

src/components/product/landing/NavBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ export default function NavBar() {
1010
<div className={styles.navlogo_container}>
1111
<Link href="/">
1212
<Whitelogo className={styles.logo} />
13+
<Whitetextlogo className={styles.textlogo} />
1314
</Link>
14-
<Whitetextlogo className={styles.textlogo} />
1515
</div>
1616
<div className={styles['link-container']}>
1717
<Link href="/signin">로그인</Link>

src/pages/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ export default function Home() {
1717
width: '100%',
1818
height: '100%',
1919
backgroundColor: 'var(--black)',
20+
maxWidth: '100vw',
21+
overflow: 'hidden',
2022
}}
2123
>
2224
<Header />

0 commit comments

Comments
 (0)