@salesforcedevs/docs-components 1.3.123-alpha.0 → 1.3.123-alpha.1
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
|
@@ -241,6 +241,17 @@ export default class ContentLayout extends LightningElement {
|
|
|
241
241
|
: globalNavHeight + docHeaderHeight
|
|
242
242
|
}px`
|
|
243
243
|
);
|
|
244
|
+
|
|
245
|
+
const rightNavBarEl =
|
|
246
|
+
this.template.querySelector(".right-nav-bar");
|
|
247
|
+
|
|
248
|
+
if (rightNavBarEl) {
|
|
249
|
+
rightNavBarEl.style.top = `${
|
|
250
|
+
globalNavHeight +
|
|
251
|
+
docHeaderHeight +
|
|
252
|
+
docPhaseEl.offsetHeight
|
|
253
|
+
}px`;
|
|
254
|
+
}
|
|
244
255
|
}
|
|
245
256
|
});
|
|
246
257
|
};
|