@blackbaud/skyux-design-tokens 0.0.24 → 0.0.25
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 +4 -0
- package/package.json +1 -1
- package/scss/mixins.scss +4 -4
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/scss/mixins.scss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "variables" as vars;
|
|
2
2
|
|
|
3
3
|
@mixin sky-border($type, $sides...) {
|
|
4
4
|
@if(length($sides) == 0) {
|
|
@@ -7,15 +7,15 @@
|
|
|
7
7
|
|
|
8
8
|
@each $side in $sides {
|
|
9
9
|
@if($type == "light") {
|
|
10
|
-
border-#{$side}: 1px solid
|
|
10
|
+
border-#{$side}: 1px solid vars.$sky-border-color-neutral-light;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
@if($type == "dark") {
|
|
14
|
-
border-#{$side}: 1px solid
|
|
14
|
+
border-#{$side}: 1px solid vars.$sky-border-color-neutral-medium;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
@if($type == "row") {
|
|
18
|
-
border-#{$side}: 1px dotted
|
|
18
|
+
border-#{$side}: 1px dotted vars.$sky-border-color-neutral-medium;
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
}
|