@treely/strapi-slices 4.1.3 → 4.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@treely/strapi-slices",
3
- "version": "4.1.3",
3
+ "version": "4.1.4",
4
4
  "license": "MIT",
5
5
  "author": "Tree.ly GmbH",
6
6
  "description": "@treely/strapi-slices is a open source library maintained by Tree.ly.",
@@ -1,7 +1,7 @@
1
- export const BREAKPOINT_SM = '320px';
2
- export const BREAKPOINT_MD = '768px';
3
- export const BREAKPOINT_LG = '960px';
4
- export const BREAKPOINT_XL = '1200px';
1
+ export const BREAKPOINT_SM = `${320 - 1}px`;
2
+ export const BREAKPOINT_MD = `${768 - 1}px`;
3
+ export const BREAKPOINT_LG = `${960 - 1}px`;
4
+ export const BREAKPOINT_XL = `${1200 - 1}px`;
5
5
 
6
6
  export const BREAKPOINT_SM_QUERY = `(max-width: ${BREAKPOINT_SM})`;
7
7
  export const BREAKPOINT_MD_QUERY = `(max-width: ${BREAKPOINT_MD})`;