fix(ui): fix for hover for health modal

This commit is contained in:
nick-delirium 2023-03-29 16:26:04 +02:00
parent 09934de91e
commit d74568dfb5

View file

@ -29,8 +29,8 @@ function Category({
return (
<div
className={cn(
'px-4 py-2 flex items-center gap-2 cursor-pointer',
isExpandable || isSelectable ? 'hover:bg-active-blue' : '',
'px-4 py-2 flex items-center gap-2',
isExpandable || isSelectable ? 'hover:bg-active-blue cursor-pointer' : '',
isSelected ? 'bg-active-blue' : '',
noBorder ? '' : 'border-b',
)}