From 8d9176733cfc9dd3d8c97a3fbebd12c7c26693e8 Mon Sep 17 00:00:00 2001 From: Jorge Date: Sun, 3 May 2020 11:59:48 -0400 Subject: [PATCH] fix: device query max-width --- src/style-functions/deviceQuerry.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/style-functions/deviceQuerry.js b/src/style-functions/deviceQuerry.js index 7200325..8393c36 100644 --- a/src/style-functions/deviceQuerry.js +++ b/src/style-functions/deviceQuerry.js @@ -1,9 +1,9 @@ const DEVICEQUERRY = { - xs: "@media screen and (min-width: 0px)", - sm: "@media screen and (min-width: 576px)", - md: "@media screen and (min-width: 768px)", - lg: "@media screen and (min-width: 992px)", - xl: "@media screen and (min-width: 1200px)" + xs: '@media screen and (min-width: 0px)', + sm: '@media screen and (min-width: 768px)', + md: '@media screen and (min-width: 960px)', + lg: '@media screen and (min-width: 1280px)', + xl: '@media screen and (min-width: 1900px)', }; export default DEVICEQUERRY;