nodebb-theme-harmony 1.1.31 → 1.1.32
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 +1 -1
- package/scss/fonts.scss +7 -4
- package/templates/header.tpl +1 -1
- package/templates/topic.tpl +1 -1
package/package.json
CHANGED
package/scss/fonts.scss
CHANGED
|
@@ -2,14 +2,17 @@
|
|
|
2
2
|
@use "@fontsource/poppins/scss/mixins" as Poppins;
|
|
3
3
|
|
|
4
4
|
$weights: $font-weight-light, $font-weight-normal, $font-weight-semibold, $font-weight-bold;
|
|
5
|
+
$subsets: (latin, latin-ext);
|
|
5
6
|
|
|
6
7
|
@include Inter.faces(
|
|
7
8
|
$weights: $weights,
|
|
9
|
+
$subsets: $subsets,
|
|
8
10
|
$display: fallback,
|
|
9
11
|
$directory: "./plugins/nodebb-theme-harmony/inter"
|
|
10
12
|
);
|
|
11
13
|
@include Poppins.faces(
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
$weights: $weights,
|
|
15
|
+
$subsets: $subsets,
|
|
16
|
+
$display: fallback,
|
|
17
|
+
$directory: "./plugins/nodebb-theme-harmony/poppins"
|
|
18
|
+
);
|
package/templates/header.tpl
CHANGED
|
@@ -39,6 +39,6 @@
|
|
|
39
39
|
document.documentElement.style.setProperty('--panel-offset', `0px`);
|
|
40
40
|
}
|
|
41
41
|
</script>
|
|
42
|
-
<div class="container px-md-4 d-flex flex-column gap-3 h-100" id="content">
|
|
42
|
+
<div class="container px-md-4 d-flex flex-column gap-3 h-100 mb-5 mb-lg-0" id="content">
|
|
43
43
|
<!-- IMPORT partials/noscript/warning.tpl -->
|
|
44
44
|
<!-- IMPORT partials/noscript/message.tpl -->
|
package/templates/topic.tpl
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
<div class="d-flex gap-2 justify-content-end align-items-center mt-2 hidden-empty" component="topic/thumb/list"><!-- IMPORT partials/topic/thumbs.tpl --></div>
|
|
44
44
|
</div>
|
|
45
45
|
|
|
46
|
-
<div class="row">
|
|
46
|
+
<div class="row mb-4 mb-lg-0">
|
|
47
47
|
<div class="topic {{{ if widgets.sidebar.length }}}col-lg-9 col-sm-12{{{ else }}}col-lg-12{{{ end }}}">
|
|
48
48
|
<!-- IMPORT partials/post_bar.tpl -->
|
|
49
49
|
|