Skip to content

Commit ef55434

Browse files
authored
[UNI-356] fix : 길찾기 스크롤 시 overflow-x현상 해결 (#204)
1 parent 88c9cb6 commit ef55434

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uniro_frontend/src/components/navigation/route/routeList.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const RouteList = ({
5252
}, [cautionRouteIdx, isDetailView]);
5353

5454
return (
55-
<div className="w-full">
55+
<div className="w-full scroll-x-hidden">
5656
{routes &&
5757
addOriginAndDestination(routes).map((route, index) => (
5858
<Fragment key={`${route.dist}-${route.coordinates.lat}-fragment`}>

0 commit comments

Comments
 (0)