Skip to content

Commit bc286d9

Browse files
committed
design: 에픽 드롭다운 height 조정
1 parent 41d1676 commit bc286d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/components/backlog/EpicDropdown.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const EpicDropdown = ({
8686
}, []);
8787

8888
return (
89-
<div className="max-h-[18.7rem] overflow-y-auto absolute z-10 p-1 bg-white rounded-md w-72 shadow-box">
89+
<div className="absolute z-10 p-1 bg-white rounded-md w-72 shadow-box">
9090
<div className="flex p-1 border-b-2">
9191
{selectedEpic && (
9292
<div className="min-w-[5rem]">
@@ -112,7 +112,7 @@ const EpicDropdown = ({
112112
<CategoryChip content={value} bgColor={epicColor} />
113113
</div>
114114
) : (
115-
<ul className="pt-1">
115+
<ul className="max-h-[16rem] overflow-y-auto scrollbar-thin pt-1">
116116
{...epicList.map((epic) => (
117117
<li
118118
key={epic.id}

0 commit comments

Comments
 (0)