pinokiod 3.19.87 → 3.19.88

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": "pinokiod",
3
- "version": "3.19.87",
3
+ "version": "3.19.88",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -78,7 +78,9 @@ body aside {
78
78
  */
79
79
  border-right: 1px solid rgba(0,0,0,0.04);
80
80
  height: 100%;
81
+ /*
81
82
  padding-bottom: 100px;
83
+ */
82
84
  box-sizing: border-box;
83
85
  }
84
86
  body.dark aside {
@@ -25,6 +25,7 @@ body {
25
25
  }
26
26
  aside {
27
27
  width: 200px;
28
+ flex-shrink: 0;
28
29
  overflow: auto;
29
30
  }
30
31
  aside .item.selected {
@@ -84,10 +85,21 @@ main iframe {
84
85
  main img {
85
86
  width: 100%;
86
87
  }
88
+ main h2 i {
89
+ font-size: 24px;
90
+ margin-right: 5px;
91
+ }
87
92
  main h2 {
93
+ text-transform: uppercase;
94
+ display: flex;
95
+ align-items: center;
88
96
  padding: 10px;
89
97
  margin: 0;
90
- font-size: 16px;
98
+ font-size: 12px;
99
+ background: rgba(0,0,0,0.06);
100
+ }
101
+ body.dark main h2 {
102
+ background: rgba(0,0,0,0.4);
91
103
  }
92
104
  body.dark .changes {
93
105
  color: white;
@@ -261,7 +273,7 @@ body.dark *::-webkit-scrollbar-thumb {
261
273
  <main>
262
274
  <% if (changes && changes.length > 0) { %>
263
275
  <aside>
264
- <h2><i class="fa-solid fa-code-compare"></i> Changes</h2>
276
+ <h2><i class="fa-brands fa-git-alt"></i> Changes</h2>
265
277
  <% changes.forEach(({ file, status, binary, diff, webpath }) => { %>
266
278
  <a class='item' data-selector="<%=file%>" href="#<%=file%>"><%=file%></a>
267
279
  <% }) %>