@asd20/ui 3.2.393 → 3.2.396
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
|
@@ -235,9 +235,10 @@ export default {
|
|
|
235
235
|
top: 0;
|
|
236
236
|
right: space(2);
|
|
237
237
|
bottom: 0;
|
|
238
|
+
// bottom: space(7);
|
|
238
239
|
background: var(--website-menu__open-background-color, white);
|
|
239
240
|
overflow: auto;
|
|
240
|
-
overflow-y: scroll;
|
|
241
|
+
// overflow-y: scroll !important;
|
|
241
242
|
}
|
|
242
243
|
|
|
243
244
|
.asd20-table-of-contents {
|
|
@@ -304,7 +305,6 @@ export default {
|
|
|
304
305
|
top: 0;
|
|
305
306
|
right: 0;
|
|
306
307
|
bottom: 0;
|
|
307
|
-
overflow-y: scroll;
|
|
308
308
|
&__back {
|
|
309
309
|
display: flex;
|
|
310
310
|
justify-content: flex-start;
|
|
@@ -343,7 +343,7 @@ export default {
|
|
|
343
343
|
|
|
344
344
|
.asd20-site-menu__items {
|
|
345
345
|
overflow-y: scroll; /* has to be scroll, not auto */
|
|
346
|
-
-webkit-overflow-scrolling: touch;
|
|
346
|
+
// -webkit-overflow-scrolling: touch;
|
|
347
347
|
}
|
|
348
348
|
|
|
349
349
|
.asd20-site-menu__item {
|
|
@@ -39,16 +39,6 @@
|
|
|
39
39
|
:items="actionItems"
|
|
40
40
|
/> -->
|
|
41
41
|
|
|
42
|
-
<transition name="slide">
|
|
43
|
-
<asd20-site-menu
|
|
44
|
-
ref="siteMenu"
|
|
45
|
-
v-show="menuOpen"
|
|
46
|
-
:active="menuOpen"
|
|
47
|
-
@update:active="$emit('update:menuOpen', $event)"
|
|
48
|
-
:sections="navigation"
|
|
49
|
-
v-scroll-lock="menuOpen"
|
|
50
|
-
/>
|
|
51
|
-
</transition>
|
|
52
42
|
<transition name="slide">
|
|
53
43
|
<asd20-action-menu
|
|
54
44
|
v-show="(mq === 'lg' || mq === 'xl') && isLoaded"
|
|
@@ -66,6 +56,25 @@
|
|
|
66
56
|
@update:active="$emit('update:menuOpen', $event)"
|
|
67
57
|
/> -->
|
|
68
58
|
</transition>
|
|
59
|
+
|
|
60
|
+
<transition name="slide">
|
|
61
|
+
<asd20-site-menu
|
|
62
|
+
ref="siteMenu"
|
|
63
|
+
v-show="menuOpen"
|
|
64
|
+
:active="menuOpen"
|
|
65
|
+
@update:active="$emit('update:menuOpen', $event)"
|
|
66
|
+
:sections="navigation"
|
|
67
|
+
/>
|
|
68
|
+
<!-- <asd20-site-menu
|
|
69
|
+
ref="siteMenu"
|
|
70
|
+
v-show="menuOpen"
|
|
71
|
+
:active="menuOpen"
|
|
72
|
+
@update:active="$emit('update:menuOpen', $event)"
|
|
73
|
+
:sections="navigation"
|
|
74
|
+
v-scroll-lock="menuOpen"
|
|
75
|
+
/> -->
|
|
76
|
+
</transition>
|
|
77
|
+
|
|
69
78
|
<transition name="slide">
|
|
70
79
|
<asd20-site-search
|
|
71
80
|
v-show="searchOpen"
|