mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
11 lines
455 B
JavaScript
11 lines
455 B
JavaScript
const { createSimpleStaticUtilityPlugin } = require('../pluginUtils')
|
|
|
|
module.exports = createSimpleStaticUtilityPlugin({
|
|
'.bg-repeat': { 'background-repeat': 'repeat' },
|
|
'.bg-no-repeat': { 'background-repeat': 'no-repeat' },
|
|
'.bg-repeat-x': { 'background-repeat': 'repeat-x' },
|
|
'.bg-repeat-y': { 'background-repeat': 'repeat-y' },
|
|
'.bg-repeat-round': { 'background-repeat': 'round' },
|
|
'.bg-repeat-space': { 'background-repeat': 'space' },
|
|
})
|