waibu-blu 1.1.2 → 1.1.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.
@@ -4,8 +4,6 @@
4
4
  <% if (cat.children) { %>
5
5
  <c:nav-item t:content="<%= cat.title %>" dropdown>
6
6
  <% for (const child of cat.children) { %>
7
- <% if (child.visible === 'anon' && _meta.user) continue %>
8
- <% if (child.visible === 'auth' && !_meta.user) continue %>
9
7
  <% if (child.title === '-') { %>
10
8
  <c:dropdown-item divider />
11
9
  <% } else { %>
@@ -2,7 +2,10 @@
2
2
  <c:main>
3
3
  <!-- include main.partial:/header.html -->
4
4
  <c:container>
5
- <c:heading type="4" content="<%= page.title %>" />
5
+ <c:div flex="justify-content:between">
6
+ <c:heading type="4" content="<%= page.title %>" />
7
+ <c:div id="heading-end"></c:div>
8
+ </c:div>
6
9
  <c:card shadow="sm" border="none">
7
10
  <c:card-body>
8
11
  <!-- body -->
@@ -0,0 +1,3 @@
1
+ ---
2
+ layout: sumbaSeatrack.layout:/plain.html
3
+ ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waibu-blu",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "Blu theme for Waibu Framework",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -31,3 +31,7 @@ body:not([data-bs-theme="dark"]) {
31
31
  body:not([data-bs-theme="dark"]) .header .main-navbar {
32
32
  background-color: var(--bs-light);
33
33
  }
34
+
35
+ .wmaps {
36
+ background-image: url(../images/universe.jpg);
37
+ }