M: Fix tooltip size for small screens

This commit is contained in:
Ivan 2025-10-20 13:39:30 +03:00
parent 1d4555df58
commit 72fad33a07

View File

@ -18,7 +18,7 @@ export function OperationTooltip() {
clickable
id={globalIDs.operation_tooltip}
layer='z-topmost'
className='max-w-140 dense max-h-120! overflow-y-auto!'
className='max-w-100 lg:max-w-140 dense max-h-80 lg:max-h-120! overflow-y-auto!'
hidden={!hoverItem}
>
{hoverItem && isOperationNode ? <InfoOperation operation={hoverItem} /> : null}