@youcan/celeste-tokens 0.6.91 → 0.6.92
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/preset.ts +0 -12
- package/package.json +1 -1
- package/src/unocss-formatter.ts +2 -2
package/dist/preset.ts
CHANGED
|
@@ -374,18 +374,6 @@ export const presetCeleste = definePreset((options: CelestePresetOptions = {}):
|
|
|
374
374
|
"fancy-buttons-stroke": "0 1px 3px 0 #0e121b1f, 0 0 0 1px #e1e4ea",
|
|
375
375
|
"toggle-switch": "0 6px 10px 0 #0e121b0f, 0 2px 4px 0 #0e121b08"
|
|
376
376
|
},
|
|
377
|
-
"spacing": {
|
|
378
|
-
"0": "0",
|
|
379
|
-
"2": "2px",
|
|
380
|
-
"4": "4px",
|
|
381
|
-
"6": "6px",
|
|
382
|
-
"8": "8px",
|
|
383
|
-
"10": "10px",
|
|
384
|
-
"12": "12px",
|
|
385
|
-
"14": "14px",
|
|
386
|
-
"16": "16px",
|
|
387
|
-
"48": "48px"
|
|
388
|
-
},
|
|
389
377
|
"duration": {
|
|
390
378
|
"extra-fast": "100ms",
|
|
391
379
|
"fast": "200ms",
|
package/package.json
CHANGED
package/src/unocss-formatter.ts
CHANGED
|
@@ -30,7 +30,7 @@ export function unocssFormat({ dictionary, animations }: { dictionary: any; anim
|
|
|
30
30
|
letterSpacing: {},
|
|
31
31
|
radius: {},
|
|
32
32
|
shadow: {},
|
|
33
|
-
spacing: {},
|
|
33
|
+
// spacing: {},
|
|
34
34
|
duration: {},
|
|
35
35
|
animation: {
|
|
36
36
|
keyframes,
|
|
@@ -57,7 +57,7 @@ export function unocssFormat({ dictionary, animations }: { dictionary: any; anim
|
|
|
57
57
|
fontWeights: 'fontWeight',
|
|
58
58
|
lineHeights: 'lineHeight',
|
|
59
59
|
letterSpacing: 'letterSpacing',
|
|
60
|
-
spacing: 'spacing',
|
|
60
|
+
// spacing: 'spacing',
|
|
61
61
|
radius: 'radius',
|
|
62
62
|
shadow: 'shadow',
|
|
63
63
|
boxShadow: 'shadow',
|