Skip to content

Commit 72d5ef9

Browse files
authored
Merge pull request #220 from manNomi/fix/university-section
hot fix : university overlow-x 추가했습니다
2 parents de8384a + 339743d commit 72d5ef9

File tree

1 file changed

+1
-3
lines changed
  • src/app/_home/_ui/PopularUniversitySection

1 file changed

+1
-3
lines changed

src/app/_home/_ui/PopularUniversitySection/index.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
//. "use client";
21
import Image from "next/image";
32
import Link from "next/link";
43

5-
// import useWheelHandler from "./_hooks/useWheelHandler";
64
import { ListUniversity } from "@/types/university";
75

86
type PopularUniversitySectionProps = {
@@ -11,7 +9,7 @@ type PopularUniversitySectionProps = {
119

1210
const PopularUniversitySection = ({ universities }: PopularUniversitySectionProps) => {
1311
return (
14-
<div className="">
12+
<div className="overflow-x-auto">
1513
<div className="flex gap-2">
1614
{universities.map((university, index) => (
1715
<Link key={university.id} href={`/university/${university.id}`}>

0 commit comments

Comments
 (0)