Skip to content

Commit 57cf9b1

Browse files
authored
Merge pull request Team-Shaka#109 from Team-Shaka/FE-83
fix: SelectBar.js UI 깨짐 문제
2 parents 319aa52 + 8649129 commit 57cf9b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

breifing/src/components/aboutComps/SelectBar.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ const SelectBar = () => {
1717
}
1818

1919
return (
20-
<div className={cls('xs:border-t xs:border-b border-[#B6B6B6] p-3 ', pathname === "/" ? "" : "hidden xs:block")}>
21-
<div className='flex justify-center space-x-5 xs:space-x-20 text-sm'>
20+
<div className={cls('xs:border-t xs:border-b border-[#B6B6B6] p-3', pathname === "/" ? "" : "hidden xs:block")}>
21+
<div className='flex whitespace-nowrap justify-center space-x-5 xs:space-x-20 text-sm'>
2222
{texts.map((text, i) => <div onClick={() => onClickBtn(text)} className={cls('cursor-pointer hover:font-bold transition-all', category === text ? "font-bold" : "")} key={i}>{text}</div>)}
2323
</div>
2424

0 commit comments

Comments
 (0)