sfc-utils 1.3.49 → 1.3.51

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.
Files changed (3) hide show
  1. package/nav2.js +1 -1
  2. package/package.json +1 -1
  3. package/topper.js +5 -0
package/nav2.js CHANGED
@@ -126,7 +126,7 @@ let getNav2 = function (
126
126
 
127
127
  // If a link object was provided, format the insert
128
128
  let navLinkInsert = "";
129
- if (navLink) {
129
+ if (navLink && navLink.url !== "") {
130
130
  navLinkInsert = `
131
131
  <a
132
132
  class="nav2-title"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sfc-utils",
3
- "version": "1.3.49",
3
+ "version": "1.3.51",
4
4
  "author": "ewagstaff <evanjwagstaff@gmail.com>",
5
5
  "dependencies": {
6
6
  "archieml": "^0.4.2",
package/topper.js CHANGED
@@ -163,6 +163,11 @@ let getTopper = function(settings){
163
163
  width: 100%;
164
164
  height: 100%;
165
165
  }
166
+ .giftarticle .givegift {
167
+ width: auto;
168
+ display: inline-flex;
169
+ padding: 3px 9px !important;
170
+ }
166
171
  `
167
172
  if(storySettings.Topper_CustomCSS_Inject){
168
173
  topperCSS += storySettings.Topper_CustomCSS_Inject;