@@ -16,12 +16,17 @@ const mantlePreset = {
16
16
} ,
17
17
} ,
18
18
extend : {
19
+ animation : {
20
+ "accordion-down" : "accordion-down 0.2s ease-out" ,
21
+ "accordion-up" : "accordion-up 0.2s ease-out" ,
22
+ } ,
19
23
aria : {
20
24
invalid : 'invalid="true"' ,
21
25
} ,
22
- fontFamily : {
23
- sans : [ "EuclidSquare" , ...defaultTheme . fontFamily . sans ] ,
24
- mono : [ "IBMPlexMono" , ...defaultTheme . fontFamily . mono ] ,
26
+ borderRadius : {
27
+ lg : "var(--radius)" ,
28
+ md : "calc(var(--radius) - 2px)" ,
29
+ sm : "calc(var(--radius) - 4px)" ,
25
30
} ,
26
31
colors : {
27
32
white : "hsl(var(--white) / <alpha-value>)" ,
@@ -295,13 +300,19 @@ const mantlePreset = {
295
300
foreground : "hsl(var(--card-foreground))" ,
296
301
} ,
297
302
} ,
298
- borderRadius : {
299
- lg : "var(--radius)" ,
300
- md : "calc(var(--radius) - 2px)" ,
301
- sm : "calc(var(--radius) - 4px)" ,
303
+ cursor : {
304
+ inherit : "inherit" ,
305
+ initial : "initial" ,
302
306
} ,
303
- transitionProperty : {
304
- "max-height" : "max-height" ,
307
+ fontFamily : {
308
+ sans : [ "EuclidSquare" , ...defaultTheme . fontFamily . sans ] ,
309
+ mono : [ "IBMPlexMono" , ...defaultTheme . fontFamily . mono ] ,
310
+ } ,
311
+ fontSize : {
312
+ "size-inherit" : "inherit" ,
313
+ } ,
314
+ fontWeight : {
315
+ initial : "initial" ,
305
316
} ,
306
317
keyframes : {
307
318
"accordion-down" : {
@@ -313,9 +324,19 @@ const mantlePreset = {
313
324
to : { height : "0" } ,
314
325
} ,
315
326
} ,
316
- animation : {
317
- "accordion-down" : "accordion-down 0.2s ease-out" ,
318
- "accordion-up" : "accordion-up 0.2s ease-out" ,
327
+ lineHeight : {
328
+ 0 : "0" ,
329
+ initial : "initial" ,
330
+ } ,
331
+ screens : {
332
+ xs : "480px" ,
333
+ } ,
334
+ transitionProperty : {
335
+ "max-height" : "max-height" ,
336
+ } ,
337
+ zIndex : {
338
+ 1 : "1" ,
339
+ max : "2147483647" ,
319
340
} ,
320
341
} ,
321
342
} ,
0 commit comments