@ulu/frontend-vue 0.1.3-beta.12 → 0.1.3-beta.13
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/frontend-vue.js
CHANGED
|
@@ -6371,7 +6371,7 @@ const cm = {
|
|
|
6371
6371
|
return (c, i) => k(t) && k(t).length ? (u(), _(j(e.element), {
|
|
6372
6372
|
key: 0,
|
|
6373
6373
|
class: "scroll-anchors__nav scroll-anchors__nav--animated scroll-anchors-nav-animated",
|
|
6374
|
-
style: G({ "--rail-width": `${e.railWidth}px` })
|
|
6374
|
+
style: G({ "--ulu-sa-nav-rail-width": `${e.railWidth}px` })
|
|
6375
6375
|
}, {
|
|
6376
6376
|
default: $(() => [
|
|
6377
6377
|
h("ul", ni, [
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
v-if="sections && sections.length"
|
|
4
4
|
:is="element"
|
|
5
5
|
class="scroll-anchors__nav scroll-anchors__nav--animated scroll-anchors-nav-animated"
|
|
6
|
-
:style="{ '--rail-width': `${railWidth}px` }"
|
|
6
|
+
:style="{ '--ulu-sa-nav-rail-width': `${ railWidth }px` }"
|
|
7
7
|
>
|
|
8
8
|
<ul class="scroll-anchors-nav-animated__rail">
|
|
9
9
|
<li
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
@use "@ulu/frontend/scss/selector";
|
|
10
10
|
@use "@ulu/frontend/scss/utils";
|
|
11
|
+
@use "@ulu/frontend/scss/color";
|
|
11
12
|
|
|
12
13
|
// Used for function fallback
|
|
13
14
|
$-fallbacks: () !default;
|
|
@@ -48,14 +49,14 @@ $config: (
|
|
|
48
49
|
position: relative;
|
|
49
50
|
}
|
|
50
51
|
#{ $prefix }__rail {
|
|
51
|
-
border-left: var(--rail-width, 3px) solid get("rail-border-color");
|
|
52
|
+
border-left: var(--ulu-sa-nav-rail-width, 3px) solid color.get(get("rail-border-color"));
|
|
52
53
|
padding-left: get("rail-padding");
|
|
53
54
|
}
|
|
54
55
|
#{ $prefix }__indicator {
|
|
55
56
|
position: absolute;
|
|
56
57
|
top: 0;
|
|
57
58
|
left: 0;
|
|
58
|
-
background-color: get("indicator-color");
|
|
59
|
+
background-color: color.get(get("indicator-color"));
|
|
59
60
|
clip-path: get("indicator-clip-path");
|
|
60
61
|
}
|
|
61
62
|
#{ $prefix }__indicator--can-transition {
|