From a7d2e7f7e5eddac47f0a0d255a0d21226dd08275 Mon Sep 17 00:00:00 2001 From: BananaJeans <18456310+BananaJeanss@users.noreply.github.com> Date: Sun, 8 Feb 2026 01:47:12 +0200 Subject: [PATCH] fix: fix scrolling over bio tile on /team on touchscreens (#1842) --- components/bio.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/bio.js b/components/bio.js index 7273ae63..dccc760f 100644 --- a/components/bio.js +++ b/components/bio.js @@ -23,7 +23,7 @@ export default function Bio({ popup = true, spanTwo = false, ...props }) { zIndex: !popup ? 1003 : 5, maxHeight: '90vh', overflowY: 'hidden', - overscrollBehavior: 'contain', + overscrollBehavior: 'auto', gridColumn: !spanTwo ? null : [null, null, '1 / span 2'], position: 'relative' }}