mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
14 lines
289 B
JavaScript
14 lines
289 B
JavaScript
const { createSimpleStaticUtilityPlugin } = require('../pluginUtils')
|
|
|
|
module.exports = createSimpleStaticUtilityPlugin({
|
|
'.flex-wrap': {
|
|
'flex-wrap': 'wrap',
|
|
},
|
|
'.flex-wrap-reverse': {
|
|
'flex-wrap': 'wrap-reverse',
|
|
},
|
|
'.flex-nowrap': {
|
|
'flex-wrap': 'nowrap',
|
|
},
|
|
})
|