Skip to content

Commit 26bd4b9

Browse files
committed
Merge branch 'release/v0.0.8'
2 parents 5ed5b38 + 78e751d commit 26bd4b9

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

src/components/DetailCheck/DetailCheck.module.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
text-align: center;
2828

2929
@include tablet {
30+
margin-top: 5rem;
3031
font-size: 2rem;
3132
}
3233

@@ -59,7 +60,7 @@
5960
}
6061

6162
&__image {
62-
width: 65vw;
63+
width: 55vw;
6364

6465
@include tablet {
6566
width: 70vw;

src/components/DetailCheck/DetailCheck.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default function DetailCheck(): JSX.Element {
1919
if (width >= RESPONSIVE_VARIABLE['pc']) {
2020
return (
2121
<div className={Styles.DetailCheck__title}>
22-
잊기 쉬운 콘텐츠, 모두 확인 할 수 있도록
22+
잊기 쉬운 콘텐츠, 모두 확인 할 수 있도록
2323
</div>
2424
);
2525
}

src/components/Main/Main.module.scss

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@
66
align-items: center;
77
padding: 2rem 2rem 0 2rem;
88
width: 100%;
9+
height: 71.25rem;
910
color: var(--white);
1011
background: var(--main-background);
1112
font-family: 'Pretendard';
1213

14+
@include tablet {
15+
height: 46.5rem;
16+
}
17+
1318
@include mobile {
14-
height: 38rem;
19+
height: 37.5rem;
1520
}
1621

1722
&__title {
@@ -83,10 +88,10 @@
8388
}
8489

8590
&__image {
86-
height: 35rem;
8791
padding-right: 5rem;
8892

8993
@include tablet {
94+
padding: 0;
9095
}
9196

9297
@include mobile {

src/components/Main/Main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default function Main(): JSX.Element {
7171
<Image
7272
src={mockupSrc}
7373
alt="havit mockup main"
74-
style={{ width: 'auto', height: '100%' }}
74+
style={{ width: 'auto', height: 'auto' }}
7575
priority
7676
/>
7777
</div>

0 commit comments

Comments
 (0)