Skip to content

Commit

Permalink
[메인] 인덱스 페이지 폰트, 볼드 통일 (#638)
Browse files Browse the repository at this point in the history
  • Loading branch information
junghaesung79 committed Jan 19, 2025
1 parent 3801133 commit c190e43
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 23 deletions.
6 changes: 4 additions & 2 deletions src/pages/IndexPage/components/IndexBus/IndexBus.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@
font-family: Pretendard, sans-serif;
font-size: 18px;
font-weight: 500;
line-height: 1.6;

@include media.media-breakpoint(mobile) {
margin: 0 0 0 16px;
padding-left: 3px;
margin-top: 0;
font-size: 18px;
padding-left: 3px;
margin-left: 16px;
font-weight: 700;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,17 @@

&__title {
color: #175c8e;
font-family: NanumSquare, serif;
font-size: 17px;
font-weight: bold;
font-family: Pretendard, sans-serif;
font-size: 18px;
font-weight: 500;
line-height: 1.6;

@include media.media-breakpoint(mobile) {
font-size: 15px;
box-sizing: border-box;
font-size: 18px;
padding-left: 3px;
margin-left: 16px;
box-sizing: border-box;
font-weight: 700;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,18 @@
}

&__title {
font-family: NanumSquare, serif;
font-family: Pretendard, sans-serif;
font-size: 17px;
font-weight: bold;
font-weight: 500;
line-height: 1.6;
color: #175c8e;
text-decoration: none;

@include media.media-breakpoint(mobile) {
font-size: 15px;
font-size: 18px;
padding-left: 3px;
margin-left: 16px;
font-weight: 700;
}
}

Expand Down
10 changes: 6 additions & 4 deletions src/pages/IndexPage/components/IndexStore/IndexStore.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,19 @@
}

&__title {
font-family: NanumSquare, serif;
font-size: 17px;
font-weight: bold;
font-family: Pretendard, sans-serif;
font-size: 18px;
font-weight: 500;
line-height: 1.6;
color: #175c8e;
text-decoration: none;
cursor: pointer;

@include media.media-breakpoint(mobile) {
font-size: 15px;
font-size: 18px;
padding-left: 3px;
margin-left: 16px;
font-weight: 700;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/IndexPage/components/IndexStore/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function IndexStore() {
};
return (
<section className={styles.template}>
<Link to={ROUTES.Store()} className={styles.template__title}>주변상점</Link>
<Link to={ROUTES.Store()} className={styles.template__title}>주변 상점</Link>
<div className={styles.category__wrapper}>
{isMobile
? categories?.shop_categories.slice(0, 12).map((category) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,10 @@ a {
}

.title {
font-family: NanumSquare, sans-serif;
font-size: 17px;
font-weight: bold;
font-stretch: normal;
font-style: normal;
line-height: normal;
letter-spacing: normal;
text-align: left;
font-family: Pretendard, sans-serif;
font-size: 18px;
font-weight: 500;
line-height: 1.6;
color: #175c8e;
margin-bottom: 16px;
display: block;
Expand Down

0 comments on commit c190e43

Please sign in to comment.