diff --git a/__tests__/fixtures/tailwind-output.css b/__tests__/fixtures/tailwind-output.css index cf9ecd381..dd2d385b2 100644 --- a/__tests__/fixtures/tailwind-output.css +++ b/__tests__/fixtures/tailwind-output.css @@ -2183,6 +2183,10 @@ button, cursor: not-allowed; } +.cursor-wait { + cursor: wait; +} + .block { display: block; } @@ -6066,6 +6070,10 @@ button, cursor: not-allowed; } + .sm\:cursor-wait { + cursor: wait; + } + .sm\:block { display: block; } @@ -9942,6 +9950,10 @@ button, cursor: not-allowed; } + .md\:cursor-wait { + cursor: wait; + } + .md\:block { display: block; } @@ -13818,6 +13830,10 @@ button, cursor: not-allowed; } + .lg\:cursor-wait { + cursor: wait; + } + .lg\:block { display: block; } @@ -17694,6 +17710,10 @@ button, cursor: not-allowed; } + .xl\:cursor-wait { + cursor: wait; + } + .xl\:block { display: block; } diff --git a/src/generators/cursor.js b/src/generators/cursor.js index cd0e8f385..2409e9ea8 100644 --- a/src/generators/cursor.js +++ b/src/generators/cursor.js @@ -6,5 +6,6 @@ export default function() { 'cursor-default': { cursor: 'default' }, 'cursor-pointer': { cursor: 'pointer' }, 'cursor-not-allowed': { cursor: 'not-allowed' }, + 'cursor-wait': { cursor: 'wait' }, }) }