mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
17 lines
367 B
JavaScript
17 lines
367 B
JavaScript
const { createSimpleStaticUtilityPlugin } = require('../pluginUtils')
|
|
|
|
module.exports = createSimpleStaticUtilityPlugin({
|
|
'.flex-row': {
|
|
'flex-direction': 'row',
|
|
},
|
|
'.flex-row-reverse': {
|
|
'flex-direction': 'row-reverse',
|
|
},
|
|
'.flex-col': {
|
|
'flex-direction': 'column',
|
|
},
|
|
'.flex-col-reverse': {
|
|
'flex-direction': 'column-reverse',
|
|
},
|
|
})
|