We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0468915 commit 71ec3d2Copy full SHA for 71ec3d2
1 file changed
docfx/templates/darkerfx/styles/toggle-theme.js
@@ -1,11 +1,12 @@
1
// Inject app name next to logo
2
document.addEventListener("DOMContentLoaded", function () {
3
- var header = document.querySelector(".navbar-header");
4
- if (header) {
+ var brand = document.querySelector(".navbar-brand");
+ if (brand) {
5
+ brand.style.cssText = "display:inline-flex;align-items:center;gap:10px;";
6
var span = document.createElement("span");
7
span.textContent = "Client Scripting";
- span.style.cssText = "display:inline-block;font-size:.95rem;font-weight:700;color:#22d3a0;letter-spacing:.02em;line-height:50px;padding-left:4px;";
8
- header.appendChild(span);
+ span.style.cssText = "font-size:.9rem;font-weight:700;color:#22d3a0;letter-spacing:.02em;white-space:nowrap;";
9
+ brand.appendChild(span);
10
}
11
});
12
0 commit comments