From 0a38333b01b190194b6ddbdfc5c1f657e928eedd Mon Sep 17 00:00:00 2001 From: George Tsiolis Date: Fri, 3 Feb 2023 16:50:52 +0000 Subject: [PATCH] Update context dropdown element height --- components/dashboard/src/components/DropDown2.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/dashboard/src/components/DropDown2.tsx b/components/dashboard/src/components/DropDown2.tsx index e9b50d53e5b09c..f9ce7a2ded3029 100644 --- a/components/dashboard/src/components/DropDown2.tsx +++ b/components/dashboard/src/components/DropDown2.tsx @@ -177,7 +177,9 @@ export const DropDown2: FunctionComponent = (props) => { key={element.id} id={element.id} tabIndex={0} - className={"h-16 rounded-lg flex items-center px-2 " + selectionClasses} + className={ + "h-min rounded-lg flex items-center px-2 py-1.5 " + selectionClasses + } onMouseDown={() => { if (element.isSelectable) { setFocussedElement(element.id);