PATCH scrolling issues after dropdown menu

This commit is contained in:
2025-08-11 15:20:03 +02:00
parent 0c11abc7b9
commit fda43855cc

View File

@@ -52,7 +52,7 @@ const Dropdown = ({ label, children, className }: DropdownProps) => {
{label}
</button>
{isOpen && (
<ul className={"absolute w-48 origin-top-right rounded-md bg-white shadow-lg font-medium"}>
<ul className={"absolute w-30 origin-top-right rounded-md bg-white shadow-lg font-medium"}>
{children}
</ul>
)}