@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/dist/constants/breakpoints.d.ts +8 -8
- package/dist/strapi-slices.cjs.development.js +2 -2
- package/dist/strapi-slices.cjs.development.js.map +1 -1
- package/dist/strapi-slices.cjs.production.min.js +1 -1
- package/dist/strapi-slices.cjs.production.min.js.map +1 -1
- package/dist/strapi-slices.esm.js +2 -2
- package/dist/strapi-slices.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/constants/breakpoints.ts +4 -4
|
@@ -817,8 +817,8 @@ var FullScreenImage = function FullScreenImage(_ref) {
|
|
|
817
817
|
});
|
|
818
818
|
};
|
|
819
819
|
|
|
820
|
-
var BREAKPOINT_MD =
|
|
821
|
-
var BREAKPOINT_LG =
|
|
820
|
+
var BREAKPOINT_MD = 768 - 1 + "px";
|
|
821
|
+
var BREAKPOINT_LG = 960 - 1 + "px";
|
|
822
822
|
var BREAKPOINT_MD_QUERY = "(max-width: " + BREAKPOINT_MD + ")";
|
|
823
823
|
var BREAKPOINT_LG_QUERY = "(max-width: " + BREAKPOINT_LG + ")";
|
|
824
824
|
|