Skip to content

Commit 5187825

Browse files
committed
Remove 3px and 4px stroke widths from default config
1 parent a5fb2df commit 5187825

File tree

3 files changed

+1
-83
lines changed

3 files changed

+1
-83
lines changed

__tests__/fixtures/tailwind-output-important.css

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -6873,14 +6873,6 @@ video {
68736873
stroke-width: 2px !important;
68746874
}
68756875

6876-
.stroke-3 {
6877-
stroke-width: 3px !important;
6878-
}
6879-
6880-
.stroke-4 {
6881-
stroke-width: 4px !important;
6882-
}
6883-
68846876
.table-auto {
68856877
table-layout: auto !important;
68866878
}
@@ -16243,14 +16235,6 @@ video {
1624316235
stroke-width: 2px !important;
1624416236
}
1624516237

16246-
.sm\:stroke-3 {
16247-
stroke-width: 3px !important;
16248-
}
16249-
16250-
.sm\:stroke-4 {
16251-
stroke-width: 4px !important;
16252-
}
16253-
1625416238
.sm\:table-auto {
1625516239
table-layout: auto !important;
1625616240
}
@@ -25614,14 +25598,6 @@ video {
2561425598
stroke-width: 2px !important;
2561525599
}
2561625600

25617-
.md\:stroke-3 {
25618-
stroke-width: 3px !important;
25619-
}
25620-
25621-
.md\:stroke-4 {
25622-
stroke-width: 4px !important;
25623-
}
25624-
2562525601
.md\:table-auto {
2562625602
table-layout: auto !important;
2562725603
}
@@ -34985,14 +34961,6 @@ video {
3498534961
stroke-width: 2px !important;
3498634962
}
3498734963

34988-
.lg\:stroke-3 {
34989-
stroke-width: 3px !important;
34990-
}
34991-
34992-
.lg\:stroke-4 {
34993-
stroke-width: 4px !important;
34994-
}
34995-
3499634964
.lg\:table-auto {
3499734965
table-layout: auto !important;
3499834966
}
@@ -44356,14 +44324,6 @@ video {
4435644324
stroke-width: 2px !important;
4435744325
}
4435844326

44359-
.xl\:stroke-3 {
44360-
stroke-width: 3px !important;
44361-
}
44362-
44363-
.xl\:stroke-4 {
44364-
stroke-width: 4px !important;
44365-
}
44366-
4436744327
.xl\:table-auto {
4436844328
table-layout: auto !important;
4436944329
}

__tests__/fixtures/tailwind-output.css

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -6873,14 +6873,6 @@ video {
68736873
stroke-width: 2px;
68746874
}
68756875

6876-
.stroke-3 {
6877-
stroke-width: 3px;
6878-
}
6879-
6880-
.stroke-4 {
6881-
stroke-width: 4px;
6882-
}
6883-
68846876
.table-auto {
68856877
table-layout: auto;
68866878
}
@@ -16243,14 +16235,6 @@ video {
1624316235
stroke-width: 2px;
1624416236
}
1624516237

16246-
.sm\:stroke-3 {
16247-
stroke-width: 3px;
16248-
}
16249-
16250-
.sm\:stroke-4 {
16251-
stroke-width: 4px;
16252-
}
16253-
1625416238
.sm\:table-auto {
1625516239
table-layout: auto;
1625616240
}
@@ -25614,14 +25598,6 @@ video {
2561425598
stroke-width: 2px;
2561525599
}
2561625600

25617-
.md\:stroke-3 {
25618-
stroke-width: 3px;
25619-
}
25620-
25621-
.md\:stroke-4 {
25622-
stroke-width: 4px;
25623-
}
25624-
2562525601
.md\:table-auto {
2562625602
table-layout: auto;
2562725603
}
@@ -34985,14 +34961,6 @@ video {
3498534961
stroke-width: 2px;
3498634962
}
3498734963

34988-
.lg\:stroke-3 {
34989-
stroke-width: 3px;
34990-
}
34991-
34992-
.lg\:stroke-4 {
34993-
stroke-width: 4px;
34994-
}
34995-
3499634964
.lg\:table-auto {
3499734965
table-layout: auto;
3499834966
}
@@ -44356,14 +44324,6 @@ video {
4435644324
stroke-width: 2px;
4435744325
}
4435844326

44359-
.xl\:stroke-3 {
44360-
stroke-width: 3px;
44361-
}
44362-
44363-
.xl\:stroke-4 {
44364-
stroke-width: 4px;
44365-
}
44366-
4436744327
.xl\:table-auto {
4436844328
table-layout: auto;
4436944329
}

stubs/defaultConfig.stub.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -369,11 +369,9 @@ module.exports = {
369369
current: 'currentColor',
370370
},
371371
strokeWidth: {
372-
'0': '0',
372+
'0': '0',
373373
'1': '1px',
374374
'2': '2px',
375-
'3': '3px',
376-
'4': '4px',
377375
},
378376
textColor: theme => theme('colors'),
379377
width: theme => ({

0 commit comments

Comments
 (0)