Skip to content

Commit 3dd518a

Browse files
authored
Merge pull request #14 from dev-five-git/fix-landing
Fix landing
2 parents 87ff155 + b2c5c8c commit 3dd518a

2 files changed

Lines changed: 31 additions & 12 deletions

File tree

apps/landing/devup.json

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,27 @@
8383
"letterSpacing": "-0.06em"
8484
}
8585
],
86-
"mainTextSm": {
87-
"fontFamily": "Spoqa Han Sans Neo",
88-
"fontStyle": "normal",
89-
"fontWeight": 500,
90-
"fontSize": "24px",
91-
"lineHeight": "normal",
92-
"letterSpacing": "-0.06em"
93-
},
86+
"mainTextSm": [
87+
{
88+
"fontFamily": "Spoqa Han Sans Neo",
89+
"fontStyle": "normal",
90+
"fontWeight": 500,
91+
"fontSize": "16px",
92+
"lineHeight": "normal",
93+
"letterSpacing": "-0.06em"
94+
},
95+
null,
96+
null,
97+
null,
98+
{
99+
"fontFamily": "Spoqa Han Sans Neo",
100+
"fontStyle": "normal",
101+
"fontWeight": 500,
102+
"fontSize": "24px",
103+
"lineHeight": "normal",
104+
"letterSpacing": "-0.06em"
105+
}
106+
],
94107
"braille": [
95108
{
96109
"fontFamily": "Spoqa Han Sans Neo",

apps/landing/src/app/Trans.tsx

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,22 @@ export function Trans() {
2020
})
2121
}, [input])
2222
return (
23-
<VStack gap="30px">
24-
<Flex alignItems="flex-start" gap="20px">
23+
<VStack gap={['16px', null, null, '30px']}>
24+
<Flex
25+
alignItems="flex-start"
26+
gap={['10px', null, null, '20px']}
27+
justifyContent={['center', null, null, 'flex-start']}
28+
>
2529
<Box
2630
aria-label="Finger pointing image"
2731
bg="$text"
28-
h="32px"
32+
flexShrink={0}
33+
h={['20px', null, null, '32px']}
2934
maskImage="url(/images/home/finger-point.svg)"
3035
maskPosition="center"
3136
maskRepeat="no-repeat"
32-
w="28px"
37+
maskSize="contain"
38+
w={['17px', null, null, '28px']}
3339
/>
3440
<Text color="$text" pos="relative" top="-2px" typography="mainTextSm">
3541
직접 입력해 실시간 점자 번역을 체험해보세요!

0 commit comments

Comments
 (0)