about summary refs log tree commit diff
path: root/src/platform/detection.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/platform/detection.ts')
-rw-r--r--src/platform/detection.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/platform/detection.ts b/src/platform/detection.ts
index 41ca20e5d..d414b008c 100644
--- a/src/platform/detection.ts
+++ b/src/platform/detection.ts
@@ -7,7 +7,7 @@ export const isAndroid = Platform.OS === 'android'
 export const isNative = isIOS || isAndroid
 export const devicePlatform = isIOS ? 'ios' : isAndroid ? 'android' : 'web'
 export const isWeb = !isNative
-export const isMobileWebMediaQuery = 'only screen and (max-width: 1230px)'
+export const isMobileWebMediaQuery = 'only screen and (max-width: 1300px)'
 export const isMobileWeb =
   isWeb &&
   // @ts-ignore we know window exists -prf