diff options
Diffstat (limited to 'src/platform')
-rw-r--r-- | src/platform/detection.ts | 2 |
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 |