@onetype/framework 2.0.34 → 2.0.36

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.
@@ -5,7 +5,7 @@
5
5
  position: fixed;
6
6
  inset: 0;
7
7
  width: 100vw;
8
- height: 100vh;
8
+ height: 100dvh;
9
9
  overflow: hidden;
10
10
  }
11
11
 
@@ -14,9 +14,17 @@
14
14
  {
15
15
  position: relative;
16
16
  overflow: auto;
17
+ scrollbar-width: thin;
18
+ scrollbar-color: var(--ot-bg-4) var(--ot-bg-1);
17
19
  }
18
20
 
21
+ .ot-page-area::-webkit-scrollbar { width: 8px; height: 8px; }
22
+ .ot-page-area::-webkit-scrollbar-track { background: var(--ot-bg-1); }
23
+ .ot-page-area::-webkit-scrollbar-thumb { background: var(--ot-bg-4); border-radius: 4px; }
24
+ .ot-page-area::-webkit-scrollbar-thumb:hover { background: var(--ot-bg-4-hover); }
25
+
19
26
  .ot-page-area > div
20
27
  {
21
- height: 100%;
28
+ height: fit-content;
29
+ min-height: 100%;
22
30
  }
@@ -210,6 +210,7 @@
210
210
  {
211
211
  font-size: 20px;
212
212
  color: var(--ot-brand);
213
+ pointer-events: none;
213
214
  }
214
215
 
215
216
  .e-210c16c7 > .drawer > .toggle
@@ -41,7 +41,7 @@
41
41
  }
42
42
 
43
43
  /* Scrollbar */
44
- .ot-scrollbar { overflow: auto; }
44
+ .ot-scrollbar { overflow: auto; scrollbar-width: thin; scrollbar-color: var(--ot-bg-4) var(--ot-bg-1); }
45
45
  .ot-scrollbar::-webkit-scrollbar { width: 8px; height: 8px; }
46
46
  .ot-scrollbar::-webkit-scrollbar-track { background: var(--ot-bg-1); }
47
47
  .ot-scrollbar::-webkit-scrollbar-thumb { background: var(--ot-bg-4); border-radius: 4px; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onetype/framework",
3
- "version": "2.0.34",
3
+ "version": "2.0.36",
4
4
  "description": "OneType Framework — Full-stack isomorphic JavaScript framework built from scratch. One addon abstraction powers databases, servers, commands, pages, directives, queues, and more.",
5
5
  "type": "module",
6
6
  "main": "lib/load.js",