diff --git a/__tests__/fixtures/tailwind-output-important.css b/__tests__/fixtures/tailwind-output-important.css index a5744cb7c..a12d2c46b 100644 --- a/__tests__/fixtures/tailwind-output-important.css +++ b/__tests__/fixtures/tailwind-output-important.css @@ -3254,6 +3254,10 @@ video { cursor: wait !important; } +.cursor-text { + cursor: text !important; +} + .cursor-move { cursor: move !important; } @@ -10067,6 +10071,10 @@ video { cursor: wait !important; } + .sm\:cursor-text { + cursor: text !important; + } + .sm\:cursor-move { cursor: move !important; } @@ -16865,6 +16873,10 @@ video { cursor: wait !important; } + .md\:cursor-text { + cursor: text !important; + } + .md\:cursor-move { cursor: move !important; } @@ -23663,6 +23675,10 @@ video { cursor: wait !important; } + .lg\:cursor-text { + cursor: text !important; + } + .lg\:cursor-move { cursor: move !important; } @@ -30461,6 +30477,10 @@ video { cursor: wait !important; } + .xl\:cursor-text { + cursor: text !important; + } + .xl\:cursor-move { cursor: move !important; } diff --git a/__tests__/fixtures/tailwind-output.css b/__tests__/fixtures/tailwind-output.css index 2e176d4b7..d92841cfb 100644 --- a/__tests__/fixtures/tailwind-output.css +++ b/__tests__/fixtures/tailwind-output.css @@ -3254,6 +3254,10 @@ video { cursor: wait; } +.cursor-text { + cursor: text; +} + .cursor-move { cursor: move; } @@ -10067,6 +10071,10 @@ video { cursor: wait; } + .sm\:cursor-text { + cursor: text; + } + .sm\:cursor-move { cursor: move; } @@ -16865,6 +16873,10 @@ video { cursor: wait; } + .md\:cursor-text { + cursor: text; + } + .md\:cursor-move { cursor: move; } @@ -23663,6 +23675,10 @@ video { cursor: wait; } + .lg\:cursor-text { + cursor: text; + } + .lg\:cursor-move { cursor: move; } @@ -30461,6 +30477,10 @@ video { cursor: wait; } + .xl\:cursor-text { + cursor: text; + } + .xl\:cursor-move { cursor: move; } diff --git a/stubs/defaultConfig.stub.js b/stubs/defaultConfig.stub.js index 60aa69b2b..19b8ca649 100644 --- a/stubs/defaultConfig.stub.js +++ b/stubs/defaultConfig.stub.js @@ -258,6 +258,7 @@ module.exports = { default: 'default', pointer: 'pointer', wait: 'wait', + text: 'text', move: 'move', 'not-allowed': 'not-allowed', },