@treely/strapi-slices 4.1.2 → 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 +3 -3
- 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 +3 -3
- package/dist/strapi-slices.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/constants/breakpoints.ts +4 -4
- package/src/slices/Timeline/Timeline.tsx +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export declare const BREAKPOINT_SM = "
|
|
2
|
-
export declare const BREAKPOINT_MD = "
|
|
3
|
-
export declare const BREAKPOINT_LG = "
|
|
4
|
-
export declare const BREAKPOINT_XL = "
|
|
5
|
-
export declare const BREAKPOINT_SM_QUERY = "(max-width:
|
|
6
|
-
export declare const BREAKPOINT_MD_QUERY = "(max-width:
|
|
7
|
-
export declare const BREAKPOINT_LG_QUERY = "(max-width:
|
|
8
|
-
export declare const BREAKPOINT_XL_QUERY = "(max-width:
|
|
1
|
+
export declare const BREAKPOINT_SM = "319px";
|
|
2
|
+
export declare const BREAKPOINT_MD = "767px";
|
|
3
|
+
export declare const BREAKPOINT_LG = "959px";
|
|
4
|
+
export declare const BREAKPOINT_XL = "1199px";
|
|
5
|
+
export declare const BREAKPOINT_SM_QUERY = "(max-width: 319px)";
|
|
6
|
+
export declare const BREAKPOINT_MD_QUERY = "(max-width: 767px)";
|
|
7
|
+
export declare const BREAKPOINT_LG_QUERY = "(max-width: 959px)";
|
|
8
|
+
export declare const BREAKPOINT_XL_QUERY = "(max-width: 1199px)";
|
|
@@ -830,8 +830,8 @@ var FullScreenImage = function FullScreenImage(_ref) {
|
|
|
830
830
|
});
|
|
831
831
|
};
|
|
832
832
|
|
|
833
|
-
var BREAKPOINT_MD =
|
|
834
|
-
var BREAKPOINT_LG =
|
|
833
|
+
var BREAKPOINT_MD = 768 - 1 + "px";
|
|
834
|
+
var BREAKPOINT_LG = 960 - 1 + "px";
|
|
835
835
|
var BREAKPOINT_MD_QUERY = "(max-width: " + BREAKPOINT_MD + ")";
|
|
836
836
|
var BREAKPOINT_LG_QUERY = "(max-width: " + BREAKPOINT_LG + ")";
|
|
837
837
|
|
|
@@ -4791,7 +4791,7 @@ var Timeline = function Timeline(_ref) {
|
|
|
4791
4791
|
key: item.id,
|
|
4792
4792
|
columns: [1, null, null, 2],
|
|
4793
4793
|
alignContent: "center",
|
|
4794
|
-
gridTemplateColumns: [null, null, null, '
|
|
4794
|
+
gridTemplateColumns: [null, null, null, '1fr 16fr'],
|
|
4795
4795
|
position: "relative"
|
|
4796
4796
|
}, React__default.default.createElement(boemly.Flex, {
|
|
4797
4797
|
alignItems: "center",
|