@nice-digital/nds-core 2.0.8-alpha.0 → 2.0.11-alpha.0
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nice-digital/nds-core",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.11-alpha.0",
|
|
4
4
|
"description": "Core code for the NICE Design System",
|
|
5
5
|
"author": "Ian Routledge <ian.routledge@nice.org.uk>",
|
|
6
6
|
"contributors": [
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@babel/cli": "^7.5.0"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "73233bdf0ce8f71ea8e70866037cf7e812b399a4"
|
|
48
48
|
}
|
|
@@ -131,7 +131,8 @@
|
|
|
131
131
|
/// @since 0.1.0
|
|
132
132
|
@mixin list {
|
|
133
133
|
font-feature-settings: 'kern', 'onum', 'liga';
|
|
134
|
-
|
|
134
|
+
// Avoid bullets being clipped with slight offset
|
|
135
|
+
margin: utils.rem(0 0 spacing.$medium (spacing.$medium + spacing.$x-small));
|
|
135
136
|
max-width: 66ch;
|
|
136
137
|
padding: 0;
|
|
137
138
|
}
|
|
@@ -16,7 +16,7 @@ $base-line-height: 1.6;
|
|
|
16
16
|
|
|
17
17
|
/// Default text decoration thickness for link hover
|
|
18
18
|
/// @since 3.0.0
|
|
19
|
-
$link-hover-text-decoration-thickness: 0.
|
|
19
|
+
$link-hover-text-decoration-thickness: 0.1rem;
|
|
20
20
|
|
|
21
21
|
/// Sans-serif font stack
|
|
22
22
|
/// @since 2.0.0
|
|
@@ -83,7 +83,7 @@ $named-font-sizes: (
|
|
|
83
83
|
h4: 2,
|
|
84
84
|
h5: 1,
|
|
85
85
|
h6: 0,
|
|
86
|
-
lead:
|
|
86
|
+
lead: 2,
|
|
87
87
|
p: 0
|
|
88
88
|
);
|
|
89
89
|
|