@sc-360-v2/storefront-cms-library 0.3.31 → 0.3.32
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/dist/builder.js +1 -1
- package/dist/menu-v2.scss +13 -7
- package/package.json +1 -1
package/dist/menu-v2.scss
CHANGED
|
@@ -26,7 +26,7 @@ $defaultValues: (
|
|
|
26
26
|
position: absolute;
|
|
27
27
|
left: 0;
|
|
28
28
|
width: 100%;
|
|
29
|
-
top: 100
|
|
29
|
+
top: calc(100% + var(--_ctm-dn-hr-os-cr-ot-y, 0px));
|
|
30
30
|
z-index: 2;
|
|
31
31
|
visibility: hidden;
|
|
32
32
|
opacity: 0;
|
|
@@ -37,8 +37,12 @@ $defaultValues: (
|
|
|
37
37
|
gap: prepareMediaVariable(--_ctm-lt-im-gp);
|
|
38
38
|
|
|
39
39
|
&:is([data-hamburger-active="true"] > *) {
|
|
40
|
-
animation: animThree var(--_transition-duration) var(--_transition-timing-function) 1
|
|
41
|
-
|
|
40
|
+
// animation: animThree var(--_transition-duration) var(--_transition-timing-function) 1
|
|
41
|
+
// forwards alternate;
|
|
42
|
+
visibility: visible;
|
|
43
|
+
opacity: 1;
|
|
44
|
+
max-height: var(--_min-submenu-height, 650px);
|
|
45
|
+
overflow-y: auto;
|
|
42
46
|
}
|
|
43
47
|
|
|
44
48
|
& > #{$menuItem} {
|
|
@@ -329,10 +333,12 @@ $defaultValues: (
|
|
|
329
333
|
width: 100%;
|
|
330
334
|
}
|
|
331
335
|
|
|
332
|
-
max-height: 0px;
|
|
333
|
-
overflow: clip;
|
|
334
|
-
|
|
335
|
-
|
|
336
|
+
// max-height: 0px;
|
|
337
|
+
// overflow: clip;
|
|
338
|
+
max-height: 500px;
|
|
339
|
+
overflow-y: auto;
|
|
340
|
+
// animation: animTwo var(--_transition-duration)
|
|
341
|
+
// var(--_transition-timing-function) 1 forwards alternate;
|
|
336
342
|
|
|
337
343
|
@keyframes animTwo {
|
|
338
344
|
100% {
|