Skip to content

Commit cf77601

Browse files
committed
Fix conflicts
2 parents 7831312 + db11e99 commit cf77601

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

__tests__/fixtures/tailwind-output.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2219,6 +2219,10 @@ button,
22192219
cursor: not-allowed;
22202220
}
22212221

2222+
.cursor-wait {
2223+
cursor: wait;
2224+
}
2225+
22222226
.block {
22232227
display: block;
22242228
}
@@ -6106,6 +6110,10 @@ button,
61066110
cursor: not-allowed;
61076111
}
61086112

6113+
.sm\:cursor-wait {
6114+
cursor: wait;
6115+
}
6116+
61096117
.sm\:block {
61106118
display: block;
61116119
}
@@ -9986,6 +9994,10 @@ button,
99869994
cursor: not-allowed;
99879995
}
99889996

9997+
.md\:cursor-wait {
9998+
cursor: wait;
9999+
}
10000+
998910001
.md\:block {
999010002
display: block;
999110003
}
@@ -13866,6 +13878,10 @@ button,
1386613878
cursor: not-allowed;
1386713879
}
1386813880

13881+
.lg\:cursor-wait {
13882+
cursor: wait;
13883+
}
13884+
1386913885
.lg\:block {
1387013886
display: block;
1387113887
}
@@ -17746,6 +17762,10 @@ button,
1774617762
cursor: not-allowed;
1774717763
}
1774817764

17765+
.xl\:cursor-wait {
17766+
cursor: wait;
17767+
}
17768+
1774917769
.xl\:block {
1775017770
display: block;
1775117771
}

src/generators/cursor.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ export default function() {
66
'cursor-default': { cursor: 'default' },
77
'cursor-pointer': { cursor: 'pointer' },
88
'cursor-not-allowed': { cursor: 'not-allowed' },
9+
'cursor-wait': { cursor: 'wait' },
910
})
1011
}

0 commit comments

Comments
 (0)