Add text smooth utility.

This commit is contained in:
Jonathan Reinink 2017-10-03 20:26:49 -04:00
parent 6b204cf0dd
commit 8b3cbbd7a7

View File

@ -8,6 +8,10 @@ export default function() {
'text-capitalize': { 'text-transform': 'capitalize' },
'text-underline': { 'text-decoration': 'underline' },
'text-strike': { 'text-decoration': 'line-through' },
'text-smooth': {
'-webkit-font-smoothing': 'antialiased',
'-moz-osx-font-smoothing': 'grayscale',
},
'text-normal': {
'text-decoration': 'none',
'text-transform': 'none',