We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41d1676 commit bc286d9Copy full SHA for bc286d9
frontend/src/components/backlog/EpicDropdown.tsx
@@ -86,7 +86,7 @@ const EpicDropdown = ({
86
}, []);
87
88
return (
89
- <div className="max-h-[18.7rem] overflow-y-auto absolute z-10 p-1 bg-white rounded-md w-72 shadow-box">
+ <div className="absolute z-10 p-1 bg-white rounded-md w-72 shadow-box">
90
<div className="flex p-1 border-b-2">
91
{selectedEpic && (
92
<div className="min-w-[5rem]">
@@ -112,7 +112,7 @@ const EpicDropdown = ({
112
<CategoryChip content={value} bgColor={epicColor} />
113
</div>
114
) : (
115
- <ul className="pt-1">
+ <ul className="max-h-[16rem] overflow-y-auto scrollbar-thin pt-1">
116
{...epicList.map((epic) => (
117
<li
118
key={epic.id}
0 commit comments