mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
12 lines
300 B
JavaScript
12 lines
300 B
JavaScript
import createUtilityPlugin from '../util/createUtilityPlugin'
|
|
|
|
export default function() {
|
|
return function({ target, ...args }) {
|
|
if (target('gridColumnEnd') === 'ie11') {
|
|
return
|
|
}
|
|
|
|
createUtilityPlugin('gridColumnEnd', [['col-end', ['gridColumnEnd']]])({ target, ...args })
|
|
}
|
|
}
|