@innovastudio/contentbox 1.6.29 → 1.6.30

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/contentbox",
3
3
  "type": "module",
4
- "version": "1.6.29",
4
+ "version": "1.6.30",
5
5
  "description": "",
6
6
  "main": "public/contentbox/contentbox.esm.js",
7
7
  "files": [
@@ -52,7 +52,7 @@
52
52
  "ws": "^8.13.0"
53
53
  },
54
54
  "dependencies": {
55
- "@innovastudio/contentbuilder": "^1.5.6",
55
+ "@innovastudio/contentbuilder": "^1.5.7",
56
56
  "js-beautify": "^1.14.0"
57
57
  }
58
58
  }
@@ -1770,10 +1770,14 @@ body.topspace .custom-topbar {
1770
1770
  height: var(--topspace);
1771
1771
  }
1772
1772
 
1773
- @media all and (max-width: 970px) {
1773
+ @media all and (max-width: 1100px) {
1774
1774
  .custom-topbar > div:first-child {
1775
1775
  display: none;
1776
1776
  }
1777
+
1778
+ .custom-topbar > div:nth-child(2) {
1779
+ margin-left: 0;
1780
+ }
1777
1781
  }
1778
1782
  .custom-topbar > div:nth-child(3) {
1779
1783
  justify-content: flex-end;
@@ -26831,11 +26831,13 @@ const renderQuickAdd = builder => {
26831
26831
  elm = quickadd.querySelector('.add-social');
26832
26832
  dom.addEventListener(elm, 'click', () => {
26833
26833
  const mode = quickadd.getAttribute('data-mode');
26834
- const html = `<div class="is-social" style="text-align: center;">
26835
- <a href="https://twitter.com/"><i class="icon ion-social-twitter" style="margin-right: 1em"></i></a>
26836
- <a href="https://www.facebook.com/"><i class="icon ion-social-facebook" style="margin-right: 1em"></i></a>
26837
- <a href="mailto:you@example.com"><i class="icon ion-android-drafts"></i></a>
26838
- </div>`;
26834
+ const html = `
26835
+ <div class="is-social text-left">
26836
+ <a href="https://twitter.com/"><i class="bi bi-twitter-x"></i></a>
26837
+ <a href="https://www.facebook.com/"><i class="bi bi-facebook"></i></a>
26838
+ <a href="https://www.instagram.com/" title=""><i class="icon bi bi-instagram"></i></a>
26839
+ </div>
26840
+ `;
26839
26841
  util.addContent(html, mode);
26840
26842
  });
26841
26843
  elm = quickadd.querySelector('.add-map');