Skip to content

Commit

Permalink
Update context dropdown element height
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsiolis committed Feb 14, 2023
1 parent d5d7659 commit 0a38333
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/dashboard/src/components/DropDown2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,9 @@ export const DropDown2: FunctionComponent<DropDown2Props> = (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);
Expand Down

0 comments on commit 0a38333

Please sign in to comment.