@okjavis/nodebb-theme-javis 6.0.3 → 6.0.4

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@okjavis/nodebb-theme-javis",
3
- "version": "6.0.3",
3
+ "version": "6.0.4",
4
4
  "description": "Modern, premium NodeBB theme for JAVIS Community - Extends Harmony with custom styling",
5
5
  "main": "theme.js",
6
6
  "scripts": {
@@ -11,10 +11,10 @@
11
11
  display: flex;
12
12
  align-items: center;
13
13
  justify-content: center;
14
- height: 56px; // Match header height (8px + 36px + 8px + border)
14
+ height: 56px;
15
15
  min-height: 56px;
16
- padding: 0 $jv-space-4; // Only horizontal padding
17
- margin-bottom: $jv-space-3; // 12px space below border before nav items
16
+ padding: 0 $jv-space-4;
17
+ margin-bottom: $jv-space-3;
18
18
  border-bottom: 1px solid $jv-border-subtle;
19
19
  flex-shrink: 0;
20
20
  box-sizing: border-box;
@@ -26,17 +26,16 @@
26
26
  text-decoration: none;
27
27
  }
28
28
 
29
- // Icon logo (collapsed state) - 36px for better visibility
29
+ // Icon logo (collapsed state)
30
30
  .javis-logo-icon {
31
31
  width: 36px;
32
32
  height: 36px;
33
33
  object-fit: contain;
34
34
  }
35
35
 
36
- // Full logo (expanded state) - max 140px width, 36px height
36
+ // Full logo (expanded state) size controlled via inline style on the img tag
37
37
  .javis-logo-full {
38
- max-width: 140px;
39
- height: 36px;
38
+ max-width: 200px;
40
39
  object-fit: contain;
41
40
  }
42
41
  }
@@ -5,7 +5,7 @@
5
5
  <!-- Icon logo (shown when collapsed) -->
6
6
  <img src="{relative_path}/plugins/@okjavis/nodebb-theme-javis/static/images/logo-icon.png" alt="JAVIS" class="javis-logo-icon visible-closed" />
7
7
  <!-- Full logo (shown when expanded) -->
8
- <img src="{relative_path}/plugins/@okjavis/nodebb-theme-javis/static/images/logo-full.png" alt="JAVIS Community" class="javis-logo-full visible-open" />
8
+ <img src="{relative_path}/plugins/@okjavis/nodebb-theme-javis/static/images/logo-full.png" alt="JAVIS Community" class="javis-logo-full visible-open" style="height:44px;width:auto;" />
9
9
  </a>
10
10
  </div>
11
11