mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
10 lines
392 B
JavaScript
10 lines
392 B
JavaScript
const { createSimpleStaticUtilityPlugin } = require('../pluginUtils')
|
|
|
|
module.exports = createSimpleStaticUtilityPlugin({
|
|
'.whitespace-normal': { 'white-space': 'normal' },
|
|
'.whitespace-nowrap': { 'white-space': 'nowrap' },
|
|
'.whitespace-pre': { 'white-space': 'pre' },
|
|
'.whitespace-pre-line': { 'white-space': 'pre-line' },
|
|
'.whitespace-pre-wrap': { 'white-space': 'pre-wrap' },
|
|
})
|