@onetype/framework 2.0.33 → 2.0.34
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.
|
@@ -201,6 +201,7 @@
|
|
|
201
201
|
height: 40px;
|
|
202
202
|
background: var(--ot-bg-1);
|
|
203
203
|
border-top: 1px solid var(--ot-bg-2-border);
|
|
204
|
+
border-bottom: 1px solid var(--ot-bg-2-border);
|
|
204
205
|
z-index: 999;
|
|
205
206
|
cursor: pointer;
|
|
206
207
|
}
|
|
@@ -208,7 +209,7 @@
|
|
|
208
209
|
.e-210c16c7 > .bar > .toggle
|
|
209
210
|
{
|
|
210
211
|
font-size: 20px;
|
|
211
|
-
color: var(--ot-
|
|
212
|
+
color: var(--ot-brand);
|
|
212
213
|
}
|
|
213
214
|
|
|
214
215
|
.e-210c16c7 > .drawer > .toggle
|
|
@@ -249,17 +250,31 @@
|
|
|
249
250
|
max-height: 80vh;
|
|
250
251
|
background: var(--ot-bg-1);
|
|
251
252
|
border-top: 1px solid var(--ot-bg-2-border);
|
|
252
|
-
padding: var(--ot-spacing-
|
|
253
|
+
padding: 0 var(--ot-spacing-s) var(--ot-spacing-s);
|
|
253
254
|
overflow-y: auto;
|
|
254
255
|
z-index: 1001;
|
|
255
256
|
}
|
|
256
257
|
|
|
257
258
|
.e-210c16c7 > .drawer > .toggle
|
|
258
259
|
{
|
|
259
|
-
|
|
260
|
+
display: flex;
|
|
261
|
+
align-items: center;
|
|
262
|
+
justify-content: center;
|
|
263
|
+
width: 100%;
|
|
264
|
+
height: 40px;
|
|
265
|
+
background: none;
|
|
266
|
+
border: none;
|
|
267
|
+
border-bottom: 1px solid var(--ot-bg-2-border);
|
|
268
|
+
color: var(--ot-text-2);
|
|
269
|
+
cursor: pointer;
|
|
260
270
|
margin-bottom: var(--ot-spacing-s);
|
|
261
271
|
}
|
|
262
272
|
|
|
273
|
+
.e-210c16c7 > .drawer > .toggle > i
|
|
274
|
+
{
|
|
275
|
+
font-size: 20px;
|
|
276
|
+
}
|
|
277
|
+
|
|
263
278
|
.e-210c16c7 > .drawer > .group
|
|
264
279
|
{
|
|
265
280
|
border-top: none;
|
|
@@ -84,7 +84,7 @@ onetype.AddonReady('elements', (elements) =>
|
|
|
84
84
|
<slot name="bottom"></slot>
|
|
85
85
|
</nav>
|
|
86
86
|
<div :class="'bar ' + variant.join(' ')" ot-click="toggle">
|
|
87
|
-
<i class="toggle">
|
|
87
|
+
<i class="toggle">filter_list</i>
|
|
88
88
|
</div>
|
|
89
89
|
<div ot-if="open" class="overlay" ot-click="toggle"></div>
|
|
90
90
|
<nav ot-if="open" :class="'drawer ' + variant.join(' ')">
|
|
@@ -28,6 +28,18 @@
|
|
|
28
28
|
.ot-container-l { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 calc(var(--ot-spacing-m) * 2); }
|
|
29
29
|
.ot-container-full { width: 100%; padding: 0 calc(var(--ot-spacing-m) * 2); }
|
|
30
30
|
|
|
31
|
+
@media screen and (max-width: 900px)
|
|
32
|
+
{
|
|
33
|
+
.ot-container,
|
|
34
|
+
.ot-container-s,
|
|
35
|
+
.ot-container-m,
|
|
36
|
+
.ot-container-l,
|
|
37
|
+
.ot-container-full
|
|
38
|
+
{
|
|
39
|
+
padding: 0 var(--ot-spacing-m);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
31
43
|
/* Scrollbar */
|
|
32
44
|
.ot-scrollbar { overflow: auto; }
|
|
33
45
|
.ot-scrollbar::-webkit-scrollbar { width: 8px; height: 8px; }
|
package/lib/styles/variables.css
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onetype/framework",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.34",
|
|
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",
|