@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
package/scss/_sidebar.scss
CHANGED
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
display: flex;
|
|
12
12
|
align-items: center;
|
|
13
13
|
justify-content: center;
|
|
14
|
-
height: 56px;
|
|
14
|
+
height: 56px;
|
|
15
15
|
min-height: 56px;
|
|
16
|
-
padding: 0 $jv-space-4;
|
|
17
|
-
margin-bottom: $jv-space-3;
|
|
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)
|
|
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)
|
|
36
|
+
// Full logo (expanded state) — size controlled via inline style on the img tag
|
|
37
37
|
.javis-logo-full {
|
|
38
|
-
max-width:
|
|
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
|
|