@asd20/ui 3.2.395 → 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
|
@@ -237,8 +237,8 @@ export default {
|
|
|
237
237
|
bottom: 0;
|
|
238
238
|
// bottom: space(7);
|
|
239
239
|
background: var(--website-menu__open-background-color, white);
|
|
240
|
-
|
|
241
|
-
overflow-y: scroll !important;
|
|
240
|
+
overflow: auto;
|
|
241
|
+
// overflow-y: scroll !important;
|
|
242
242
|
}
|
|
243
243
|
|
|
244
244
|
.asd20-table-of-contents {
|
|
@@ -305,7 +305,6 @@ export default {
|
|
|
305
305
|
top: 0;
|
|
306
306
|
right: 0;
|
|
307
307
|
bottom: 0;
|
|
308
|
-
// overflow-y: scroll;
|
|
309
308
|
&__back {
|
|
310
309
|
display: flex;
|
|
311
310
|
justify-content: flex-start;
|
|
@@ -343,7 +342,7 @@ export default {
|
|
|
343
342
|
}
|
|
344
343
|
|
|
345
344
|
.asd20-site-menu__items {
|
|
346
|
-
overflow-y: scroll
|
|
345
|
+
overflow-y: scroll; /* has to be scroll, not auto */
|
|
347
346
|
// -webkit-overflow-scrolling: touch;
|
|
348
347
|
}
|
|
349
348
|
|
|
@@ -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"
|