Skip to content

Commit 1b24db9

Browse files
committed
Sort cursor utilities
1 parent ad208d4 commit 1b24db9

File tree

2 files changed

+41
-21
lines changed

2 files changed

+41
-21
lines changed

__tests__/fixtures/tailwind-output.css

Lines changed: 40 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2219,14 +2219,18 @@ button,
22192219
cursor: pointer;
22202220
}
22212221

2222-
.cursor-not-allowed {
2223-
cursor: not-allowed;
2224-
}
2225-
22262222
.cursor-wait {
22272223
cursor: wait;
22282224
}
22292225

2226+
.cursor-move {
2227+
cursor: move;
2228+
}
2229+
2230+
.cursor-not-allowed {
2231+
cursor: not-allowed;
2232+
}
2233+
22302234
.block {
22312235
display: block;
22322236
}
@@ -6124,14 +6128,18 @@ button,
61246128
cursor: pointer;
61256129
}
61266130

6127-
.sm\:cursor-not-allowed {
6128-
cursor: not-allowed;
6129-
}
6130-
61316131
.sm\:cursor-wait {
61326132
cursor: wait;
61336133
}
61346134

6135+
.sm\:cursor-move {
6136+
cursor: move;
6137+
}
6138+
6139+
.sm\:cursor-not-allowed {
6140+
cursor: not-allowed;
6141+
}
6142+
61356143
.sm\:block {
61366144
display: block;
61376145
}
@@ -10022,14 +10030,18 @@ button,
1002210030
cursor: pointer;
1002310031
}
1002410032

10025-
.md\:cursor-not-allowed {
10026-
cursor: not-allowed;
10027-
}
10028-
1002910033
.md\:cursor-wait {
1003010034
cursor: wait;
1003110035
}
1003210036

10037+
.md\:cursor-move {
10038+
cursor: move;
10039+
}
10040+
10041+
.md\:cursor-not-allowed {
10042+
cursor: not-allowed;
10043+
}
10044+
1003310045
.md\:block {
1003410046
display: block;
1003510047
}
@@ -13920,14 +13932,18 @@ button,
1392013932
cursor: pointer;
1392113933
}
1392213934

13923-
.lg\:cursor-not-allowed {
13924-
cursor: not-allowed;
13925-
}
13926-
1392713935
.lg\:cursor-wait {
1392813936
cursor: wait;
1392913937
}
1393013938

13939+
.lg\:cursor-move {
13940+
cursor: move;
13941+
}
13942+
13943+
.lg\:cursor-not-allowed {
13944+
cursor: not-allowed;
13945+
}
13946+
1393113947
.lg\:block {
1393213948
display: block;
1393313949
}
@@ -17818,14 +17834,18 @@ button,
1781817834
cursor: pointer;
1781917835
}
1782017836

17821-
.xl\:cursor-not-allowed {
17822-
cursor: not-allowed;
17823-
}
17824-
1782517837
.xl\:cursor-wait {
1782617838
cursor: wait;
1782717839
}
1782817840

17841+
.xl\:cursor-move {
17842+
cursor: move;
17843+
}
17844+
17845+
.xl\:cursor-not-allowed {
17846+
cursor: not-allowed;
17847+
}
17848+
1782917849
.xl\:block {
1783017850
display: block;
1783117851
}

src/generators/cursor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ export default function() {
55
'cursor-auto': { cursor: 'auto' },
66
'cursor-default': { cursor: 'default' },
77
'cursor-pointer': { cursor: 'pointer' },
8+
'cursor-wait': { cursor: 'wait' },
89
'cursor-move': { cursor: 'move' },
910
'cursor-not-allowed': { cursor: 'not-allowed' },
10-
'cursor-wait': { cursor: 'wait' },
1111
})
1212
}

0 commit comments

Comments
 (0)