File tree Expand file tree Collapse file tree 2 files changed +31
-31
lines changed Expand file tree Collapse file tree 2 files changed +31
-31
lines changed Original file line number Diff line number Diff line change @@ -586,6 +586,12 @@ button,
586
586
}
587
587
}
588
588
589
+ .list-reset {
590
+ list-style : none;
591
+ margin : 0 ;
592
+ padding : 0 ;
593
+ }
594
+
589
595
.appearance-none {
590
596
appearance : none;
591
597
}
@@ -3534,18 +3540,18 @@ button,
3534
3540
cursor : not-allowed;
3535
3541
}
3536
3542
3537
- .list-reset {
3538
- list-style : none;
3539
- margin : 0 ;
3540
- padding : 0 ;
3541
- }
3542
-
3543
3543
.example {
3544
3544
font-weight : 700 ;
3545
3545
color : # e3342f ;
3546
3546
}
3547
3547
3548
3548
@media (min-width : 576px ) {
3549
+ .sm\:list-reset {
3550
+ list-style : none;
3551
+ margin : 0 ;
3552
+ padding : 0 ;
3553
+ }
3554
+
3549
3555
.sm\:appearance-none {
3550
3556
appearance : none;
3551
3557
}
@@ -6494,19 +6500,19 @@ button,
6494
6500
cursor : not-allowed;
6495
6501
}
6496
6502
6497
- .sm\:list-reset {
6498
- list-style : none;
6499
- margin : 0 ;
6500
- padding : 0 ;
6501
- }
6502
-
6503
6503
.sm\:example {
6504
6504
font-weight : 700 ;
6505
6505
color : # e3342f ;
6506
6506
}
6507
6507
}
6508
6508
6509
6509
@media (min-width : 768px ) {
6510
+ .md\:list-reset {
6511
+ list-style : none;
6512
+ margin : 0 ;
6513
+ padding : 0 ;
6514
+ }
6515
+
6510
6516
.md\:appearance-none {
6511
6517
appearance : none;
6512
6518
}
@@ -9455,19 +9461,19 @@ button,
9455
9461
cursor : not-allowed;
9456
9462
}
9457
9463
9458
- .md\:list-reset {
9459
- list-style : none;
9460
- margin : 0 ;
9461
- padding : 0 ;
9462
- }
9463
-
9464
9464
.md\:example {
9465
9465
font-weight : 700 ;
9466
9466
color : # e3342f ;
9467
9467
}
9468
9468
}
9469
9469
9470
9470
@media (min-width : 992px ) {
9471
+ .lg\:list-reset {
9472
+ list-style : none;
9473
+ margin : 0 ;
9474
+ padding : 0 ;
9475
+ }
9476
+
9471
9477
.lg\:appearance-none {
9472
9478
appearance : none;
9473
9479
}
@@ -12416,19 +12422,19 @@ button,
12416
12422
cursor : not-allowed;
12417
12423
}
12418
12424
12419
- .lg\:list-reset {
12420
- list-style : none;
12421
- margin : 0 ;
12422
- padding : 0 ;
12423
- }
12424
-
12425
12425
.lg\:example {
12426
12426
font-weight : 700 ;
12427
12427
color : # e3342f ;
12428
12428
}
12429
12429
}
12430
12430
12431
12431
@media (min-width : 1200px ) {
12432
+ .xl\:list-reset {
12433
+ list-style : none;
12434
+ margin : 0 ;
12435
+ padding : 0 ;
12436
+ }
12437
+
12432
12438
.xl\:appearance-none {
12433
12439
appearance : none;
12434
12440
}
@@ -15377,12 +15383,6 @@ button,
15377
15383
cursor : not-allowed;
15378
15384
}
15379
15385
15380
- .xl\:list-reset {
15381
- list-style : none;
15382
- margin : 0 ;
15383
- padding : 0 ;
15384
- }
15385
-
15386
15386
.xl\:example {
15387
15387
font-weight : 700 ;
15388
15388
color : # e3342f ;
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ export default function(config) {
44
44
css . walkAtRules ( 'tailwind' , atRule => {
45
45
if ( atRule . params === 'utilities' ) {
46
46
const utilities = _ . flatten ( [
47
+ lists ( options ) ,
47
48
forms ( options ) ,
48
49
textSizes ( options ) ,
49
50
textWeights ( options ) ,
@@ -78,7 +79,6 @@ export default function(config) {
78
79
pointerEvents ( options ) ,
79
80
resize ( options ) ,
80
81
cursor ( options ) ,
81
- lists ( options ) ,
82
82
] )
83
83
84
84
atRule . before ( container ( options ) )
You can’t perform that action at this time.
0 commit comments