Skip to content

Commit 6c127e5

Browse files
committed
Revert not-italic to roman
1 parent c32519d commit 6c127e5

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
@@ -4223,7 +4223,7 @@ button,
42234223
font-style: italic;
42244224
}
42254225

4226-
.not-italic {
4226+
.roman {
42274227
font-style: normal;
42284228
}
42294229

@@ -4269,7 +4269,7 @@ button,
42694269
font-style: italic;
42704270
}
42714271

4272-
.hover\:not-italic:hover {
4272+
.hover\:roman:hover {
42734273
font-style: normal;
42744274
}
42754275

@@ -8120,7 +8120,7 @@ button,
81208120
font-style: italic;
81218121
}
81228122

8123-
.sm\:not-italic {
8123+
.sm\:roman {
81248124
font-style: normal;
81258125
}
81268126

@@ -8166,7 +8166,7 @@ button,
81668166
font-style: italic;
81678167
}
81688168

8169-
.sm\:hover\:not-italic:hover {
8169+
.sm\:hover\:roman:hover {
81708170
font-style: normal;
81718171
}
81728172

@@ -12018,7 +12018,7 @@ button,
1201812018
font-style: italic;
1201912019
}
1202012020

12021-
.md\:not-italic {
12021+
.md\:roman {
1202212022
font-style: normal;
1202312023
}
1202412024

@@ -12064,7 +12064,7 @@ button,
1206412064
font-style: italic;
1206512065
}
1206612066

12067-
.md\:hover\:not-italic:hover {
12067+
.md\:hover\:roman:hover {
1206812068
font-style: normal;
1206912069
}
1207012070

@@ -15916,7 +15916,7 @@ button,
1591615916
font-style: italic;
1591715917
}
1591815918

15919-
.lg\:not-italic {
15919+
.lg\:roman {
1592015920
font-style: normal;
1592115921
}
1592215922

@@ -15962,7 +15962,7 @@ button,
1596215962
font-style: italic;
1596315963
}
1596415964

15965-
.lg\:hover\:not-italic:hover {
15965+
.lg\:hover\:roman:hover {
1596615966
font-style: normal;
1596715967
}
1596815968

@@ -19814,7 +19814,7 @@ button,
1981419814
font-style: italic;
1981519815
}
1981619816

19817-
.xl\:not-italic {
19817+
.xl\:roman {
1981819818
font-style: normal;
1981919819
}
1982019820

@@ -19860,7 +19860,7 @@ button,
1986019860
font-style: italic;
1986119861
}
1986219862

19863-
.xl\:hover\:not-italic:hover {
19863+
.xl\:hover\:roman:hover {
1986419864
font-style: normal;
1986519865
}
1986619866

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-
'not-italic': { 'font-style': 'normal' },
6+
roman: { 'font-style': 'normal' },
77

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

0 commit comments

Comments
 (0)