@nnc-digital/nnc-design-system 1.0.0-beta8 → 1.0.0-beta9

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.
@@ -7798,7 +7798,7 @@ const PromotedLink$1 = styled.a`
7798
7798
 
7799
7799
  margin-bottom: ${(prop) => (prop.oneCol ? '20px' : '0px')};
7800
7800
  padding: 30px;
7801
- flex: 1;
7801
+ flex: 1 1 calc(33.333% - 20px);
7802
7802
 
7803
7803
  &:nth-of-type(2n) {
7804
7804
  margin-right: 30px;
@@ -7901,7 +7901,7 @@ var PromotedLinks = function (_a) {
7901
7901
  var promotedLinksArray = _a.promotedLinksArray, oneCol = _a.oneCol;
7902
7902
  if (promotedLinksArray.length > 0) {
7903
7903
  return (React.createElement(PromotedLinks$1, { "data-testid": "PromotedLinks", "$oneCol": oneCol },
7904
- React.createElement(Row$1, { isList: true, hasWrap: true }, promotedLinksArray.map(function (link, i) { return (React.createElement(Column, { isList: true, small: "full", medium: "one-half", large: "one-third", key: i },
7904
+ React.createElement(Row$1, { isList: true, hasWrap: true }, promotedLinksArray.map(function (link, i) { return (React.createElement(Column, { isList: true, small: "full", medium: "one-half", large: "auto", key: i },
7905
7905
  React.createElement(PromotedLink$1, { "$oneCol": oneCol, href: link.url, title: link.title },
7906
7906
  React.createElement("span", null, link.title)))); }))));
7907
7907
  }