@wlloyalty/wll-react-sdk 1.0.73 → 1.0.74

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/web.js CHANGED
@@ -20566,9 +20566,7 @@ var Grid = function (_a) {
20566
20566
  aspectRatio: 1
20567
20567
  };
20568
20568
  } else {
20569
- // Account for horizontal padding (GRID_GAP on both sides)
20570
- var adjustedScreenWidth = SCREEN_WIDTH - 2 * GRID_GAP;
20571
- var tileWidth = (adjustedScreenWidth - (columns - 1) * GRID_GAP) / columns;
20569
+ var tileWidth = (SCREEN_WIDTH - (columns + 1) * GRID_GAP) / columns;
20572
20570
  return {
20573
20571
  width: tileWidth,
20574
20572
  marginBottom: GRID_GAP,