Skip to content

Commit 542eebf

Browse files
committed
Fix aspect ratio value
1 parent 954c1bb commit 542eebf

File tree

4 files changed

+25
-25
lines changed

4 files changed

+25
-25
lines changed

apps/landing/src/app/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export default function HomePage() {
6767
<Text color="$text" typography="title">
6868
braillify의 특징
6969
</Text>
70-
<Box aspectRatio="1/1" bg="$text" borderRadius="50%" h="16px" />
70+
<Box aspectRatio="1" bg="$text" borderRadius="50%" h="16px" />
7171
</Flex>
7272
<Text color="$text" typography="bodyLg">
7373
‘Braille(점자)’에 ‘-ify(~화化하다)’를 더해
@@ -101,7 +101,7 @@ export default function HomePage() {
101101
</Text>
102102
</VStack>
103103
<Box
104-
aspectRatio="1/1"
104+
aspectRatio="1"
105105
bg="$text"
106106
borderRadius="50%"
107107
boxSize={['12px', null, null, '16px']}
@@ -132,7 +132,7 @@ export default function HomePage() {
132132
</Text>
133133
</VStack>
134134
<Box
135-
aspectRatio="1/1"
135+
aspectRatio="1"
136136
bg="$text"
137137
borderRadius="50%"
138138
boxSize={['12px', null, null, '16px']}
@@ -164,7 +164,7 @@ export default function HomePage() {
164164
</Text>
165165
</VStack>
166166
<Box
167-
aspectRatio="1/1"
167+
aspectRatio="1"
168168
bg="$text"
169169
borderRadius="50%"
170170
boxSize={['12px', null, null, '16px']}
@@ -198,7 +198,7 @@ export default function HomePage() {
198198
<Text color="#FFF" typography="title" whiteSpace="nowrap">
199199
공식 커뮤니티 참여하기
200200
</Text>
201-
<Box aspectRatio="1/1" bg="#FFF" borderRadius="50%" h="16px" />
201+
<Box aspectRatio="1" bg="#FFF" borderRadius="50%" h="16px" />
202202
</Flex>
203203
<Text
204204
color="#FFF"

apps/landing/src/app/test-case/page.tsx

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -101,97 +101,97 @@ export default async function TestCasePage() {
101101
px={[null, null, null, '20px']}
102102
>
103103
<Box
104-
aspectRatio="1/1"
104+
aspectRatio="1"
105105
bg="$text"
106106
borderRadius="100px"
107107
boxSize="16px"
108108
/>
109109
<Box
110-
aspectRatio="1/1"
110+
aspectRatio="1"
111111
bg="$text"
112112
borderRadius="100px"
113113
boxSize="16px"
114114
/>
115115
<Box
116-
aspectRatio="1/1"
116+
aspectRatio="1"
117117
bg="$text"
118118
borderRadius="100px"
119119
boxSize="16px"
120120
/>
121121
<Box
122-
aspectRatio="1/1"
122+
aspectRatio="1"
123123
bg="$text"
124124
borderRadius="100px"
125125
boxSize="16px"
126126
/>
127127
<Box
128-
aspectRatio="1/1"
128+
aspectRatio="1"
129129
bg="$text"
130130
borderRadius="100px"
131131
boxSize="16px"
132132
/>
133133
<Box
134-
aspectRatio="1/1"
134+
aspectRatio="1"
135135
bg="$text"
136136
borderRadius="100px"
137137
boxSize="16px"
138138
/>
139139
<Box
140-
aspectRatio="1/1"
140+
aspectRatio="1"
141141
bg="$text"
142142
borderRadius="100px"
143143
boxSize="16px"
144144
/>
145145
<Box
146-
aspectRatio="1/1"
146+
aspectRatio="1"
147147
bg="$text"
148148
borderRadius="100px"
149149
boxSize="16px"
150150
/>
151151
<Box
152-
aspectRatio="1/1"
152+
aspectRatio="1"
153153
bg="$text"
154154
borderRadius="100px"
155155
boxSize="16px"
156156
/>
157157
<Box
158-
aspectRatio="1/1"
158+
aspectRatio="1"
159159
bg="$text"
160160
borderRadius="100px"
161161
boxSize="16px"
162162
/>
163163
<Box
164-
aspectRatio="1/1"
164+
aspectRatio="1"
165165
bg="$text"
166166
borderRadius="100px"
167167
boxSize="16px"
168168
/>
169169
<Box
170-
aspectRatio="1/1"
170+
aspectRatio="1"
171171
bg="$text"
172172
borderRadius="100px"
173173
boxSize="16px"
174174
/>
175175
<Box
176-
aspectRatio="1/1"
176+
aspectRatio="1"
177177
bg="$text"
178178
borderRadius="100px"
179179
boxSize="16px"
180180
/>
181181
<Box
182-
aspectRatio="1/1"
182+
aspectRatio="1"
183183
bg="$text"
184184
borderRadius="100px"
185185
boxSize="16px"
186186
/>
187187
<Box
188-
aspectRatio="1/1"
188+
aspectRatio="1"
189189
bg="$text"
190190
borderRadius="100px"
191191
boxSize="16px"
192192
/>
193193
<Box
194-
aspectRatio="1/1"
194+
aspectRatio="1"
195195
bg="$text"
196196
borderRadius="100px"
197197
boxSize="16px"

apps/landing/src/components/Header/Pages.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default function Pages({ isIntersecting }: { isIntersecting: boolean }) {
3838
_groupHover={{
3939
bg: '$text',
4040
}}
41-
aspectRatio="1/1"
41+
aspectRatio="1"
4242
bg={pathname.startsWith('/docs') ? '$text' : 'transparent'}
4343
border="1px solid $text"
4444
borderRadius="50%"
@@ -71,7 +71,7 @@ export default function Pages({ isIntersecting }: { isIntersecting: boolean }) {
7171
_groupHover={{
7272
bg: '$text',
7373
}}
74-
aspectRatio="1/1"
74+
aspectRatio="1"
7575
bg={pathname.startsWith('/test-case') ? '$text' : 'transparent'}
7676
border="1px solid $text"
7777
borderRadius="50%"
@@ -104,7 +104,7 @@ export default function Pages({ isIntersecting }: { isIntersecting: boolean }) {
104104
_groupHover={{
105105
bg: '$text',
106106
}}
107-
aspectRatio="1/1"
107+
aspectRatio="1"
108108
bg={pathname.startsWith('/team') ? '$text' : 'transparent'}
109109
border="1px solid $text"
110110
borderRadius="50%"

apps/landing/src/components/test-case/TestCaseCircle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function TestCaseCircle({
1717
return (
1818
<Box role="group">
1919
<Box
20-
aspectRatio="1/1"
20+
aspectRatio="1"
2121
bg={isSuccess ? '$success' : '$error'}
2222
borderRadius="100px"
2323
boxSize="16px"

0 commit comments

Comments
 (0)