improve mobile layout and UX

This commit is contained in:
N1C4T
2026-01-06 12:45:44 +04:00
parent 07773ed42e
commit 6c9b2123dd
12 changed files with 500 additions and 48 deletions

View File

@@ -66,10 +66,11 @@ export function Tooltip({ tooltip, onEnter, onLeave }: TooltipProps) {
});
};
// Hide tooltips on mobile - they don't work with touch
return (
<div
role="tooltip"
className="fixed z-50 pointer-events-auto"
className="hidden md:block fixed z-50 pointer-events-auto"
style={{
left: left,
top: top,