mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
20 lines
550 B
JavaScript
20 lines
550 B
JavaScript
module.exports = function ({ addUtilities }) {
|
|
addUtilities({
|
|
'.divide-solid > :not([hidden]) ~ :not([hidden])': {
|
|
'border-style': 'solid',
|
|
},
|
|
'.divide-dashed > :not([hidden]) ~ :not([hidden])': {
|
|
'border-style': 'dashed',
|
|
},
|
|
'.divide-dotted > :not([hidden]) ~ :not([hidden])': {
|
|
'border-style': 'dotted',
|
|
},
|
|
'.divide-double > :not([hidden]) ~ :not([hidden])': {
|
|
'border-style': 'double',
|
|
},
|
|
'.divide-none > :not([hidden]) ~ :not([hidden])': {
|
|
'border-style': 'none',
|
|
},
|
|
})
|
|
}
|