Skip to content

Commit 02bac50

Browse files
committed
Rename to
1 parent 7831312 commit 02bac50

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

__tests__/fixtures/tailwind-output.css

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4205,7 +4205,7 @@ button,
42054205
font-style: italic;
42064206
}
42074207

4208-
.roman {
4208+
.not-italic {
42094209
font-style: normal;
42104210
}
42114211

@@ -4251,7 +4251,7 @@ button,
42514251
font-style: italic;
42524252
}
42534253

4254-
.hover\:roman:hover {
4254+
.hover\:not-italic:hover {
42554255
font-style: normal;
42564256
}
42574257

@@ -8084,7 +8084,7 @@ button,
80848084
font-style: italic;
80858085
}
80868086

8087-
.sm\:roman {
8087+
.sm\:not-italic {
80888088
font-style: normal;
80898089
}
80908090

@@ -8130,7 +8130,7 @@ button,
81308130
font-style: italic;
81318131
}
81328132

8133-
.sm\:hover\:roman:hover {
8133+
.sm\:hover\:not-italic:hover {
81348134
font-style: normal;
81358135
}
81368136

@@ -11964,7 +11964,7 @@ button,
1196411964
font-style: italic;
1196511965
}
1196611966

11967-
.md\:roman {
11967+
.md\:not-italic {
1196811968
font-style: normal;
1196911969
}
1197011970

@@ -12010,7 +12010,7 @@ button,
1201012010
font-style: italic;
1201112011
}
1201212012

12013-
.md\:hover\:roman:hover {
12013+
.md\:hover\:not-italic:hover {
1201412014
font-style: normal;
1201512015
}
1201612016

@@ -15844,7 +15844,7 @@ button,
1584415844
font-style: italic;
1584515845
}
1584615846

15847-
.lg\:roman {
15847+
.lg\:not-italic {
1584815848
font-style: normal;
1584915849
}
1585015850

@@ -15890,7 +15890,7 @@ button,
1589015890
font-style: italic;
1589115891
}
1589215892

15893-
.lg\:hover\:roman:hover {
15893+
.lg\:hover\:not-italic:hover {
1589415894
font-style: normal;
1589515895
}
1589615896

@@ -19724,7 +19724,7 @@ button,
1972419724
font-style: italic;
1972519725
}
1972619726

19727-
.xl\:roman {
19727+
.xl\:not-italic {
1972819728
font-style: normal;
1972919729
}
1973019730

@@ -19770,7 +19770,7 @@ button,
1977019770
font-style: italic;
1977119771
}
1977219772

19773-
.xl\:hover\:roman:hover {
19773+
.xl\:hover\:not-italic:hover {
1977419774
font-style: normal;
1977519775
}
1977619776

src/generators/textStyle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import defineClasses from '../util/defineClasses'
33
export default function() {
44
return defineClasses({
55
italic: { 'font-style': 'italic' },
6-
roman: { 'font-style': 'normal' },
6+
'not-italic': { 'font-style': 'normal' },
77

88
uppercase: { 'text-transform': 'uppercase' },
99
lowercase: { 'text-transform': 'lowercase' },

0 commit comments

Comments
 (0)