diff --git a/src/lib/hooks/useWebMediaQueries.tsx b/src/lib/hooks/useWebMediaQueries.tsx
index 3f43a0aaf0..71a96a89b1 100644
--- a/src/lib/hooks/useWebMediaQueries.tsx
+++ b/src/lib/hooks/useWebMediaQueries.tsx
@@ -3,8 +3,8 @@ import {isNative} from 'platform/detection'
export function useWebMediaQueries() {
const isDesktop = useMediaQuery({minWidth: 1300})
- const isTablet = useMediaQuery({minWidth: 800, maxWidth: 1300})
- const isMobile = useMediaQuery({maxWidth: 800})
+ const isTablet = useMediaQuery({minWidth: 800, maxWidth: 1300 - 1})
+ const isMobile = useMediaQuery({maxWidth: 800 - 1})
const isTabletOrMobile = isMobile || isTablet
const isTabletOrDesktop = isDesktop || isTablet
if (isNative) {
diff --git a/src/view/com/util/layouts/Breakpoints.web.tsx b/src/view/com/util/layouts/Breakpoints.web.tsx
index 5cf73df0ce..5106e3e1f8 100644
--- a/src/view/com/util/layouts/Breakpoints.web.tsx
+++ b/src/view/com/util/layouts/Breakpoints.web.tsx
@@ -8,13 +8,13 @@ export const TabletOrDesktop = ({children}: React.PropsWithChildren<{}>) => (
{children}
)
export const Tablet = ({children}: React.PropsWithChildren<{}>) => (
-
+
{children}
)
export const TabletOrMobile = ({children}: React.PropsWithChildren<{}>) => (
- {children}
+ {children}
)
export const Mobile = ({children}: React.PropsWithChildren<{}>) => (
- {children}
+ {children}
)