tailwindcss/src/plugins/borderStyle.js
2019-07-20 15:47:57 -04:00

25 lines
522 B
JavaScript

export default function() {
return function({ addUtilities, variants }) {
addUtilities(
{
'.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',
},
},
variants('borderStyle')
)
}
}