@asd20/ui 3.2.393 → 3.2.394
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,10 @@ export default {
|
|
|
234
234
|
left: 0;
|
|
235
235
|
top: 0;
|
|
236
236
|
right: space(2);
|
|
237
|
-
bottom:
|
|
237
|
+
bottom: space(7);
|
|
238
238
|
background: var(--website-menu__open-background-color, white);
|
|
239
239
|
overflow: auto;
|
|
240
|
-
overflow-y: scroll;
|
|
240
|
+
// overflow-y: scroll;
|
|
241
241
|
}
|
|
242
242
|
|
|
243
243
|
.asd20-table-of-contents {
|
|
@@ -304,7 +304,7 @@ export default {
|
|
|
304
304
|
top: 0;
|
|
305
305
|
right: 0;
|
|
306
306
|
bottom: 0;
|
|
307
|
-
overflow-y: scroll;
|
|
307
|
+
// overflow-y: scroll;
|
|
308
308
|
&__back {
|
|
309
309
|
display: flex;
|
|
310
310
|
justify-content: flex-start;
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
/>
|
|
51
51
|
</transition>
|
|
52
52
|
<transition name="slide">
|
|
53
|
-
<asd20-action-menu
|
|
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
|
-
|
|
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
|