diff --git a/__tests__/fixtures/tailwind.css b/__tests__/fixtures/tailwind.css index be1ed842d..590afd92c 100644 --- a/__tests__/fixtures/tailwind.css +++ b/__tests__/fixtures/tailwind.css @@ -3180,10 +3180,6 @@ button, align-content: space-around; } -.content-stretch { - align-content: stretch; -} - .flex-1 { flex: 1; } @@ -5930,10 +5926,6 @@ button, align-content: space-around; } - .sm\:content-stretch { - align-content: stretch; - } - .sm\:flex-1 { flex: 1; } @@ -8681,10 +8673,6 @@ button, align-content: space-around; } - .md\:content-stretch { - align-content: stretch; - } - .md\:flex-1 { flex: 1; } @@ -11432,10 +11420,6 @@ button, align-content: space-around; } - .lg\:content-stretch { - align-content: stretch; - } - .lg\:flex-1 { flex: 1; } @@ -14183,10 +14167,6 @@ button, align-content: space-around; } - .xl\:content-stretch { - align-content: stretch; - } - .xl\:flex-1 { flex: 1; } diff --git a/src/generators/flex.js b/src/generators/flex.js index 6837f72ee..7ee91262a 100644 --- a/src/generators/flex.js +++ b/src/generators/flex.js @@ -89,9 +89,6 @@ export default function() { 'content-around': { 'align-content': 'space-around', }, - 'content-stretch': { - 'align-content': 'stretch', - }, 'flex-1': { 'flex': '1' },