@linzjs/lui 17.41.1 → 17.41.2
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/CHANGELOG.md +7 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lui.css +6 -1
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +1 -1
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/MenuV2/menu-v2.scss +9 -1
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@ body.LuiHeaderMenuV2-drawer-open {
|
|
|
21
21
|
@include LuiHeaderMenuV2-drop-content;
|
|
22
22
|
height: 100%;
|
|
23
23
|
max-width: 100%;
|
|
24
|
-
|
|
24
|
+
|
|
25
25
|
z-index: 1;
|
|
26
26
|
top: 0;
|
|
27
27
|
right: 0px;
|
|
@@ -48,6 +48,14 @@ body.LuiHeaderMenuV2-drawer-open {
|
|
|
48
48
|
height: auto;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
+
&.non-sticky {
|
|
52
|
+
position: absolute;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&.sticky {
|
|
56
|
+
position: fixed;
|
|
57
|
+
}
|
|
58
|
+
|
|
51
59
|
// animation
|
|
52
60
|
transition: right 500ms, visibility 500ms;
|
|
53
61
|
visibility: hidden;
|
package/package.json
CHANGED