mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
20 lines
404 B
JavaScript
20 lines
404 B
JavaScript
const { createSimpleStaticUtilityPlugin } = require('../pluginUtils')
|
|
|
|
module.exports = createSimpleStaticUtilityPlugin({
|
|
'.border-solid': {
|
|
'border-style': 'solid',
|
|
},
|
|
'.border-dashed': {
|
|
'border-style': 'dashed',
|
|
},
|
|
'.border-dotted': {
|
|
'border-style': 'dotted',
|
|
},
|
|
'.border-double': {
|
|
'border-style': 'double',
|
|
},
|
|
'.border-none': {
|
|
'border-style': 'none',
|
|
},
|
|
})
|