@sysvale/cuida 3.0.0-alpha6 → 3.0.0-alpha7
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/@sysvale/tokens.scss +25 -0
- package/package.json +1 -1
|
@@ -257,6 +257,31 @@ $palete: map-merge(('PiccoloGreen': $g,
|
|
|
257
257
|
'Neutrals': $n,
|
|
258
258
|
),
|
|
259
259
|
$palete);
|
|
260
|
+
$border-radius-button: 4px;
|
|
261
|
+
$border-radius-lil: 6px;
|
|
262
|
+
$border-radius-extra-small: 8px;
|
|
263
|
+
$border-radius-small: 12px;
|
|
264
|
+
$border-radius-medium: 16px;
|
|
265
|
+
$border-radius-large: 20px;
|
|
266
|
+
$border-radius-extra-large: 24px;
|
|
267
|
+
$border-radius-circle: 50%;
|
|
268
|
+
|
|
269
|
+
$border-radius: ();
|
|
270
|
+
|
|
271
|
+
$border-radius: map-merge(
|
|
272
|
+
(
|
|
273
|
+
'button': $border-radius-button,
|
|
274
|
+
'lil': $border-radius-lil,
|
|
275
|
+
'extra-small': $border-radius-extra-small,
|
|
276
|
+
'small': $border-radius-small,
|
|
277
|
+
'medium': $border-radius-medium,
|
|
278
|
+
'large': $border-radius-large,
|
|
279
|
+
'extra-large': $border-radius-extra-large,
|
|
280
|
+
'circle': $border-radius-circle,
|
|
281
|
+
),
|
|
282
|
+
$border-radius
|
|
283
|
+
);
|
|
284
|
+
|
|
260
285
|
@mixin heading-1 {
|
|
261
286
|
font-size: 47px !important;
|
|
262
287
|
letter-spacing: 0px !important;
|