🚧 update mobile breakpoint to 770

This commit is contained in:
ghalestrilo 2020-08-19 18:38:33 -03:00
parent fc48a5a86c
commit 6e1724ae04
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ const checkAuth = (store) => {
};
const mobileFirst = (MobileComponent, Fallback) => props => (
<MediaQuery minDeviceWidth={800}>
<MediaQuery minDeviceWidth={770}>
{matches => (matches
? <Fallback {...props} />
: <MobileComponent {...props} />)}