mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
9 lines
353 B
JavaScript
9 lines
353 B
JavaScript
const { createSimpleStaticUtilityPlugin } = require('../pluginUtils')
|
|
|
|
module.exports = createSimpleStaticUtilityPlugin({
|
|
'.bg-clip-border': { 'background-clip': 'border-box' },
|
|
'.bg-clip-padding': { 'background-clip': 'padding-box' },
|
|
'.bg-clip-content': { 'background-clip': 'content-box' },
|
|
'.bg-clip-text': { 'background-clip': 'text' },
|
|
})
|