mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2026-01-18 16:17:36 +00:00
11 lines
295 B
JavaScript
11 lines
295 B
JavaScript
import defineClasses from '../util/defineClasses'
|
|
|
|
export default function() {
|
|
return defineClasses({
|
|
'text-left': { 'text-align': 'left' },
|
|
'text-center': { 'text-align': 'center' },
|
|
'text-right': { 'text-align': 'right' },
|
|
'text-justify': { 'text-align': 'justify' },
|
|
})
|
|
}
|