Skip to content

Commit 6e1724a

Browse files
committed
🚧 update mobile breakpoint to 770
1 parent fc48a5a commit 6e1724a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/routes.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const checkAuth = (store) => {
2828
};
2929

3030
const mobileFirst = (MobileComponent, Fallback) => props => (
31-
<MediaQuery minDeviceWidth={800}>
31+
<MediaQuery minDeviceWidth={770}>
3232
{matches => (matches
3333
? <Fallback {...props} />
3434
: <MobileComponent {...props} />)}

0 commit comments

Comments
 (0)