Skip to content

Commit a2ffc0d

Browse files
committed
Merge branch 'OFFLINE-GmbH-master' into 0.5
2 parents 9fcfbc6 + cf77601 commit a2ffc0d

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
@@ -2223,6 +2223,10 @@ button,
22232223
cursor: not-allowed;
22242224
}
22252225

2226+
.cursor-wait {
2227+
cursor: wait;
2228+
}
2229+
22262230
.block {
22272231
display: block;
22282232
}
@@ -6124,6 +6128,10 @@ button,
61246128
cursor: not-allowed;
61256129
}
61266130

6131+
.sm\:cursor-wait {
6132+
cursor: wait;
6133+
}
6134+
61276135
.sm\:block {
61286136
display: block;
61296137
}
@@ -10018,6 +10026,10 @@ button,
1001810026
cursor: not-allowed;
1001910027
}
1002010028

10029+
.md\:cursor-wait {
10030+
cursor: wait;
10031+
}
10032+
1002110033
.md\:block {
1002210034
display: block;
1002310035
}
@@ -13912,6 +13924,10 @@ button,
1391213924
cursor: not-allowed;
1391313925
}
1391413926

13927+
.lg\:cursor-wait {
13928+
cursor: wait;
13929+
}
13930+
1391513931
.lg\:block {
1391613932
display: block;
1391713933
}
@@ -17806,6 +17822,10 @@ button,
1780617822
cursor: not-allowed;
1780717823
}
1780817824

17825+
.xl\:cursor-wait {
17826+
cursor: wait;
17827+
}
17828+
1780917829
.xl\:block {
1781017830
display: block;
1781117831
}

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)