@khipu/design-system 0.2.0-alpha.126 → 0.2.0-alpha.127
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.
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*
|
|
12
12
|
* AUTO-GENERATED FILE - DO NOT EDIT MANUALLY
|
|
13
13
|
* Source: design-system/src/tokens/tokens.json
|
|
14
|
-
* Generated: 2026-07-
|
|
14
|
+
* Generated: 2026-07-20T22:36:14.718Z
|
|
15
15
|
*
|
|
16
16
|
* To regenerate:
|
|
17
17
|
* cd design-system && npm run tokens:generate
|
|
@@ -5056,6 +5056,7 @@ dialog#surveyModal button.circle {
|
|
|
5056
5056
|
}
|
|
5057
5057
|
|
|
5058
5058
|
.kds-text-link {
|
|
5059
|
+
cursor: pointer;
|
|
5059
5060
|
font-family: var(--kds-font-family-primary, 'Public Sans', sans-serif);
|
|
5060
5061
|
font-size: inherit;
|
|
5061
5062
|
font-weight: var(--kds-font-weight-medium, 500);
|
|
@@ -9003,3 +9004,21 @@ a.kds-copy-all-btn.copied:hover {
|
|
|
9003
9004
|
padding-inline-start: var(--kds-spacing-2);
|
|
9004
9005
|
}
|
|
9005
9006
|
|
|
9007
|
+
/* === Display utilities ================================================ */
|
|
9008
|
+
|
|
9009
|
+
.kds-block {
|
|
9010
|
+
display: block;
|
|
9011
|
+
}
|
|
9012
|
+
|
|
9013
|
+
.kds-inline {
|
|
9014
|
+
display: inline;
|
|
9015
|
+
}
|
|
9016
|
+
|
|
9017
|
+
.kds-inline-block {
|
|
9018
|
+
display: inline-block;
|
|
9019
|
+
}
|
|
9020
|
+
|
|
9021
|
+
.kds-pre-wrap {
|
|
9022
|
+
white-space: pre-wrap;
|
|
9023
|
+
}
|
|
9024
|
+
|