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;