fix(touch): Prevent touch drag to refresh the browser page. (#5108)

This commit is contained in:
Joe Boccanfuso 2025-06-09 09:28:00 -04:00 committed by GitHub
parent 9baf153d0d
commit a361e556ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

4
platform/app/src/App.css Normal file
View File

@ -0,0 +1,4 @@
body {
overscroll-behavior: none;
touch-action: none;
}

View File

@ -35,6 +35,7 @@ import createRoutes from './routes';
import appInit from './appInit.js';
import OpenIdConnectRoutes from './utils/OpenIdConnectRoutes';
import { ShepherdJourneyProvider } from 'react-shepherd';
import './App.css';
let commandsManager: CommandsManager,
extensionManager: ExtensionManager,