diff --git a/__fixtures__/!custom.js b/__fixtures__/!custom.js index 889a3f84..5bce112e 100644 --- a/__fixtures__/!custom.js +++ b/__fixtures__/!custom.js @@ -14,5 +14,4 @@ tw`group-focus:bg-red-500` tw`group-active:bg-red-500` tw`group-visited:bg-red-500` -tw`clearfix` tw`stroke-non-scaling` diff --git a/__fixtures__/layout.js b/__fixtures__/layout.js index 49732f28..a568e5e8 100644 --- a/__fixtures__/layout.js +++ b/__fixtures__/layout.js @@ -32,7 +32,6 @@ tw`table-row` tw`float-right` tw`float-left` tw`float-none` -tw`clearfix` // https://tailwindcss.com/docs/clear tw`clear-left` diff --git a/__snapshots__/plugin.test.js.snap b/__snapshots__/plugin.test.js.snap index f35e9805..2cce793f 100644 --- a/__snapshots__/plugin.test.js.snap +++ b/__snapshots__/plugin.test.js.snap @@ -109,7 +109,6 @@ tw\`group-focus:bg-red-500\` tw\`group-active:bg-red-500\` tw\`group-visited:bg-red-500\` -tw\`clearfix\` tw\`stroke-non-scaling\` ↓ ↓ ↓ ↓ ↓ ↓ @@ -436,26 +435,26 @@ const _GlobalStyles = () => ( <_globalImport styles={_css\` @keyframes spin { - to { + to { transform: rotate(360deg); } } @keyframes ping { - 75%, 100% { + 75%, 100% { transform: scale(2); opacity: 0; } } @keyframes pulse { - 50% { + 50% { opacity: .5; } } @keyframes bounce { - 0%, 100% { + 0%, 100% { transform: translateY(-25%); animationTimingFunction: cubic-bezier(0.8,0,1,1); } - - 50% { + + 50% { transform: none; animationTimingFunction: cubic-bezier(0,0,0.2,1); } }\`} @@ -7825,7 +7824,6 @@ tw\`table-row\` tw\`float-right\` tw\`float-left\` tw\`float-none\` -tw\`clearfix\` // https://tailwindcss.com/docs/clear tw\`clear-left\` diff --git a/src/config/staticStyles.js b/src/config/staticStyles.js index 3cb5310a..8e627679 100644 --- a/src/config/staticStyles.js +++ b/src/config/staticStyles.js @@ -49,10 +49,6 @@ export default { 'float-right': { output: { float: 'right' } }, 'float-left': { output: { float: 'left' } }, 'float-none': { output: { float: 'none' } }, - clearfix: { - output: { '::after': { content: '""', display: 'table', clear: 'both' } }, - config: false, - }, // https://tailwindcss.com/docs/clear 'clear-left': { output: { clear: 'left' } },