Skip to content

Commit fc894df

Browse files
fix(login): update media query for desktop
1 parent 5053d35 commit fc894df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/LoginContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const Login: NextPage = () => {
3030
handleLoginClose();
3131
}
3232
};
33-
const isDesktop = useMediaQuery('(min-width:600px)');
33+
const isDesktop = useMediaQuery('(min-width:1025px)');
3434

3535
const providers: TProviderName[] = ['Google', 'Facebook', 'Github'];
3636

0 commit comments

Comments
 (0)