sfc-utils 1.4.25 → 1.4.26

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.
@@ -55,7 +55,7 @@ const Topper2 = ({ settings, wcmData, mods }) => {
55
55
  return [
56
56
  topperStyles.headerDekSideBySide,
57
57
  // Add styling for left padding on header-deck
58
- ... (Inverted_Layout === "headerdek-right-image-left") ? [topperStyles.largePaddingRight] : [topperStyles.largePaddingLeft]
58
+ ... (Inverted_Layout === "headerdek-right-image-left") ? [topperStyles.xlargePaddingRight] : [topperStyles.largePaddingLeft]
59
59
  ];
60
60
  case "side-by-side-portrait":
61
61
  return [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sfc-utils",
3
- "version": "1.4.25",
3
+ "version": "1.4.26",
4
4
  "author": "ewagstaff <evanjwagstaff@gmail.com>",
5
5
  "dependencies": {
6
6
  "archieml": "^0.4.2",
@@ -410,6 +410,14 @@
410
410
  }
411
411
  }
412
412
 
413
+ .xlargePaddingRight {
414
+ padding: @s16 @s32 @s16 @s16;
415
+
416
+ @media (max-width: @lg) {
417
+ padding: 0;
418
+ }
419
+ }
420
+
413
421
  .captionLargePaddingLeft {
414
422
  padding-left: @s32;
415
423