@innovastudio/contentbuilder 1.5.6 → 1.5.7

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbuilder",
3
3
  "type": "module",
4
- "version": "1.5.6",
4
+ "version": "1.5.7",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "files": [
@@ -1455,11 +1455,13 @@ const renderQuickAdd = builder => {
1455
1455
  elm = quickadd.querySelector('.add-social');
1456
1456
  dom.addEventListener(elm, 'click', () => {
1457
1457
  const mode = quickadd.getAttribute('data-mode');
1458
- const html = `<div class="is-social" style="text-align: center;">
1459
- <a href="https://twitter.com/"><i class="icon ion-social-twitter" style="margin-right: 1em"></i></a>
1460
- <a href="https://www.facebook.com/"><i class="icon ion-social-facebook" style="margin-right: 1em"></i></a>
1461
- <a href="mailto:you@example.com"><i class="icon ion-android-drafts"></i></a>
1462
- </div>`;
1458
+ const html = `
1459
+ <div class="is-social text-left">
1460
+ <a href="https://twitter.com/"><i class="bi bi-twitter-x"></i></a>
1461
+ <a href="https://www.facebook.com/"><i class="bi bi-facebook"></i></a>
1462
+ <a href="https://www.instagram.com/" title=""><i class="icon bi bi-instagram"></i></a>
1463
+ </div>
1464
+ `;
1463
1465
  util.addContent(html, mode);
1464
1466
  });
1465
1467
  elm = quickadd.querySelector('.add-map');