@thecb/components 4.2.8-beta.3 → 4.2.8-beta.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/index.cjs.js CHANGED
@@ -21283,7 +21283,7 @@ var Jumbo = function Jumbo(_ref) {
21283
21283
  childGap: "0.25rem"
21284
21284
  }, /*#__PURE__*/React__default.createElement(Cluster, {
21285
21285
  minHeight: "100%",
21286
- justify: isMobile ? "center" : showButton || showCartStatus ? "space-between" : "left",
21286
+ justify: isMobile && !showCartStatus ? "center" : showButton || showCartStatus ? "space-between" : "left",
21287
21287
  align: "center"
21288
21288
  }, /*#__PURE__*/React__default.createElement(Heading$1, {
21289
21289
  variant: isMobile ? "h5" : "h3",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "4.2.8-beta.3",
3
+ "version": "4.2.8-beta.4",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -40,7 +40,7 @@ const Jumbo = ({
40
40
  <Cluster
41
41
  minHeight="100%"
42
42
  justify={
43
- isMobile
43
+ isMobile && !showCartStatus
44
44
  ? `center`
45
45
  : showButton || showCartStatus
46
46
  ? `space-between`