Skip to content

Commit

Permalink
Remove 3px and 4px stroke widths from default config
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwathan committed Dec 30, 2019
1 parent a5fb2df commit 5187825
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 83 deletions.
40 changes: 0 additions & 40 deletions __tests__/fixtures/tailwind-output-important.css
Original file line number Diff line number Diff line change
Expand Up @@ -6873,14 +6873,6 @@ video {
stroke-width: 2px !important;
}

.stroke-3 {
stroke-width: 3px !important;
}

.stroke-4 {
stroke-width: 4px !important;
}

.table-auto {
table-layout: auto !important;
}
Expand Down Expand Up @@ -16243,14 +16235,6 @@ video {
stroke-width: 2px !important;
}

.sm\:stroke-3 {
stroke-width: 3px !important;
}

.sm\:stroke-4 {
stroke-width: 4px !important;
}

.sm\:table-auto {
table-layout: auto !important;
}
Expand Down Expand Up @@ -25614,14 +25598,6 @@ video {
stroke-width: 2px !important;
}

.md\:stroke-3 {
stroke-width: 3px !important;
}

.md\:stroke-4 {
stroke-width: 4px !important;
}

.md\:table-auto {
table-layout: auto !important;
}
Expand Down Expand Up @@ -34985,14 +34961,6 @@ video {
stroke-width: 2px !important;
}

.lg\:stroke-3 {
stroke-width: 3px !important;
}

.lg\:stroke-4 {
stroke-width: 4px !important;
}

.lg\:table-auto {
table-layout: auto !important;
}
Expand Down Expand Up @@ -44356,14 +44324,6 @@ video {
stroke-width: 2px !important;
}

.xl\:stroke-3 {
stroke-width: 3px !important;
}

.xl\:stroke-4 {
stroke-width: 4px !important;
}

.xl\:table-auto {
table-layout: auto !important;
}
Expand Down
40 changes: 0 additions & 40 deletions __tests__/fixtures/tailwind-output.css
Original file line number Diff line number Diff line change
Expand Up @@ -6873,14 +6873,6 @@ video {
stroke-width: 2px;
}

.stroke-3 {
stroke-width: 3px;
}

.stroke-4 {
stroke-width: 4px;
}

.table-auto {
table-layout: auto;
}
Expand Down Expand Up @@ -16243,14 +16235,6 @@ video {
stroke-width: 2px;
}

.sm\:stroke-3 {
stroke-width: 3px;
}

.sm\:stroke-4 {
stroke-width: 4px;
}

.sm\:table-auto {
table-layout: auto;
}
Expand Down Expand Up @@ -25614,14 +25598,6 @@ video {
stroke-width: 2px;
}

.md\:stroke-3 {
stroke-width: 3px;
}

.md\:stroke-4 {
stroke-width: 4px;
}

.md\:table-auto {
table-layout: auto;
}
Expand Down Expand Up @@ -34985,14 +34961,6 @@ video {
stroke-width: 2px;
}

.lg\:stroke-3 {
stroke-width: 3px;
}

.lg\:stroke-4 {
stroke-width: 4px;
}

.lg\:table-auto {
table-layout: auto;
}
Expand Down Expand Up @@ -44356,14 +44324,6 @@ video {
stroke-width: 2px;
}

.xl\:stroke-3 {
stroke-width: 3px;
}

.xl\:stroke-4 {
stroke-width: 4px;
}

.xl\:table-auto {
table-layout: auto;
}
Expand Down
4 changes: 1 addition & 3 deletions stubs/defaultConfig.stub.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,11 +369,9 @@ module.exports = {
current: 'currentColor',
},
strokeWidth: {
'0': '0',
'0': '0',
'1': '1px',
'2': '2px',
'3': '3px',
'4': '4px',
},
textColor: theme => theme('colors'),
width: theme => ({
Expand Down

0 comments on commit 5187825

Please sign in to comment.