Skip to content

Commit

Permalink
style: #264 - TagInput의 스크롤바를 안 보이게 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dudwns committed Dec 3, 2023
1 parent 096aa58 commit cebf305
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TagInput/TagInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const TagInput = ({
</span>
)}
{isFocused && filteredTags && filteredTags.length > 0 && (
<ul className="select-tag-list absolute mt-2 flex flex-col overflow-y-scroll rounded-md border border-slate5 bg-bgColor px-2 py-2 shadow-lg">
<ul className="horizontal-scroll select-tag-list absolute mt-2 flex flex-col overflow-y-scroll rounded-md border border-slate5 bg-bgColor px-2 py-2 shadow-lg">
{filteredTags.map((tag) => (
<li
className="rounded-md px-1 py-1 hover:bg-slate1"
Expand Down

0 comments on commit cebf305

Please sign in to comment.