Skip to content

Commit 5f8050c

Browse files
committed
Fix landing bench
1 parent 4695225 commit 5f8050c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

apps/landing/src/app/BenchBox.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,14 @@ export function BenchBox({ children }: BenchBoxProps) {
5555
return (
5656
<Box
5757
ref={scrollRef}
58+
WebkitOverflowScrolling="touch"
5859
cursor={['grab', null, null, null, 'default']}
5960
onMouseDown={handleMouseDown}
6061
onMouseLeave={handleMouseLeave}
6162
onMouseMove={handleMouseMove}
6263
onMouseUp={handleMouseUp}
6364
overflow={['auto', null, null, null, 'visible']}
6465
scrollbarWidth="none"
65-
style={{
66-
WebkitOverflowScrolling: 'touch', // iOS에서 부드러운 스크롤
67-
}}
6866
>
6967
{children}
7068
</Box>

0 commit comments

Comments
 (0)