Skip to content

Commit

Permalink
Rename to
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwathan committed Mar 12, 2018
1 parent 7831312 commit 02bac50
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions __tests__/fixtures/tailwind-output.css
Original file line number Diff line number Diff line change
Expand Up @@ -4205,7 +4205,7 @@ button,
font-style: italic;
}

.roman {
.not-italic {
font-style: normal;
}

Expand Down Expand Up @@ -4251,7 +4251,7 @@ button,
font-style: italic;
}

.hover\:roman:hover {
.hover\:not-italic:hover {
font-style: normal;
}

Expand Down Expand Up @@ -8084,7 +8084,7 @@ button,
font-style: italic;
}

.sm\:roman {
.sm\:not-italic {
font-style: normal;
}

Expand Down Expand Up @@ -8130,7 +8130,7 @@ button,
font-style: italic;
}

.sm\:hover\:roman:hover {
.sm\:hover\:not-italic:hover {
font-style: normal;
}

Expand Down Expand Up @@ -11964,7 +11964,7 @@ button,
font-style: italic;
}

.md\:roman {
.md\:not-italic {
font-style: normal;
}

Expand Down Expand Up @@ -12010,7 +12010,7 @@ button,
font-style: italic;
}

.md\:hover\:roman:hover {
.md\:hover\:not-italic:hover {
font-style: normal;
}

Expand Down Expand Up @@ -15844,7 +15844,7 @@ button,
font-style: italic;
}

.lg\:roman {
.lg\:not-italic {
font-style: normal;
}

Expand Down Expand Up @@ -15890,7 +15890,7 @@ button,
font-style: italic;
}

.lg\:hover\:roman:hover {
.lg\:hover\:not-italic:hover {
font-style: normal;
}

Expand Down Expand Up @@ -19724,7 +19724,7 @@ button,
font-style: italic;
}

.xl\:roman {
.xl\:not-italic {
font-style: normal;
}

Expand Down Expand Up @@ -19770,7 +19770,7 @@ button,
font-style: italic;
}

.xl\:hover\:roman:hover {
.xl\:hover\:not-italic:hover {
font-style: normal;
}

Expand Down
2 changes: 1 addition & 1 deletion src/generators/textStyle.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import defineClasses from '../util/defineClasses'
export default function() {
return defineClasses({
italic: { 'font-style': 'italic' },
roman: { 'font-style': 'normal' },
'not-italic': { 'font-style': 'normal' },

uppercase: { 'text-transform': 'uppercase' },
lowercase: { 'text-transform': 'lowercase' },
Expand Down

0 comments on commit 02bac50

Please sign in to comment.