File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -300,6 +300,9 @@ mod tests {
300
300
( "items--center" , vec ! [ "items--center" ] ) ,
301
301
// Simple utility with numbers
302
302
( "px-2.5" , vec ! [ "px-2.5" ] ) ,
303
+ // Simple utility with number followed by dash or underscore
304
+ ( "text-title1-strong" , vec ! [ "text-title1-strong" ] ) ,
305
+ ( "text-title1_strong" , vec ! [ "text-title1_strong" ] ) ,
303
306
// Arbitrary properties
304
307
( "[color:red]" , vec ! [ "[color:red]" ] ) ,
305
308
( "![color:red]" , vec ! [ "![color:red]" ] ) ,
Original file line number Diff line number Diff line change @@ -220,6 +220,9 @@ mod tests {
220
220
// With dashes
221
221
( "items-center" , vec ! [ "items-center" ] ) ,
222
222
( "items--center" , vec ! [ "items--center" ] ) ,
223
+ // With number followed by dash or underscore
224
+ ( "text-title1-strong" , vec ! [ "text-title1-strong" ] ) ,
225
+ ( "text-title1_strong" , vec ! [ "text-title1_strong" ] ) ,
223
226
// Inside a string
224
227
( "'flex'" , vec ! [ "flex" ] ) ,
225
228
// Multiple utilities
You can’t perform that action at this time.
0 commit comments