juxscript 1.1.322 → 1.1.323
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.
|
@@ -116,14 +116,13 @@ class Nav {
|
|
|
116
116
|
}
|
|
117
117
|
// Always render icon span for consistent alignment
|
|
118
118
|
const iconSpan = document.createElement('span');
|
|
119
|
-
iconSpan.className = 'jux-nav-item-icon';
|
|
119
|
+
iconSpan.className = 'jux-nav-item-icon text-muted';
|
|
120
120
|
if (item.icon) {
|
|
121
121
|
iconSpan.textContent = item.icon;
|
|
122
122
|
}
|
|
123
123
|
else {
|
|
124
124
|
// Bold first letter as fallback
|
|
125
125
|
iconSpan.textContent = (item.label || '').charAt(0).toUpperCase();
|
|
126
|
-
iconSpan.style.fontWeight = '700';
|
|
127
126
|
}
|
|
128
127
|
el.appendChild(iconSpan);
|
|
129
128
|
const textSpan = document.createElement('span');
|