@asd20/ui 3.2.394 → 3.2.395
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
|
@@ -234,10 +234,11 @@ export default {
|
|
|
234
234
|
left: 0;
|
|
235
235
|
top: 0;
|
|
236
236
|
right: space(2);
|
|
237
|
-
bottom:
|
|
237
|
+
bottom: 0;
|
|
238
|
+
// bottom: space(7);
|
|
238
239
|
background: var(--website-menu__open-background-color, white);
|
|
239
|
-
overflow: auto;
|
|
240
|
-
|
|
240
|
+
// overflow: auto;
|
|
241
|
+
overflow-y: scroll !important;
|
|
241
242
|
}
|
|
242
243
|
|
|
243
244
|
.asd20-table-of-contents {
|
|
@@ -342,8 +343,8 @@ export default {
|
|
|
342
343
|
}
|
|
343
344
|
|
|
344
345
|
.asd20-site-menu__items {
|
|
345
|
-
overflow-y: scroll; /* has to be scroll, not auto */
|
|
346
|
-
-webkit-overflow-scrolling: touch;
|
|
346
|
+
overflow-y: scroll !important; /* has to be scroll, not auto */
|
|
347
|
+
// -webkit-overflow-scrolling: touch;
|
|
347
348
|
}
|
|
348
349
|
|
|
349
350
|
.asd20-site-menu__item {
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
/>
|
|
51
51
|
</transition>
|
|
52
52
|
<transition name="slide">
|
|
53
|
-
|
|
53
|
+
<asd20-action-menu
|
|
54
54
|
v-show="(mq === 'lg' || mq === 'xl') && isLoaded"
|
|
55
55
|
:items="actionItems"
|
|
56
56
|
:active="menuOpen"
|
|
57
57
|
@update:active="$emit('update:menuOpen', $event)"
|
|
58
|
-
/>
|
|
59
|
-
<asd20-action-menu
|
|
58
|
+
/>
|
|
59
|
+
<!-- <asd20-action-menu
|
|
60
60
|
v-show="
|
|
61
61
|
(menuOpen && (mq === 'sm' || mq === 'md') && isLoaded) ||
|
|
62
62
|
((mq === 'lg' || mq === 'xl') && isLoaded)
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
:items="actionItems"
|
|
65
65
|
:active="menuOpen"
|
|
66
66
|
@update:active="$emit('update:menuOpen', $event)"
|
|
67
|
-
/>
|
|
67
|
+
/> -->
|
|
68
68
|
</transition>
|
|
69
69
|
<transition name="slide">
|
|
70
70
|
<asd20-site-search
|