tailwindcss/src/plugins/backgroundRepeat.js
2019-04-28 17:13:12 -04:00

16 lines
524 B
JavaScript

export default function() {
return function({ addUtilities, variants }) {
addUtilities(
{
'.bg-repeat': { 'background-repeat': 'repeat' },
'.bg-no-repeat': { 'background-repeat': 'no-repeat' },
'.bg-repeat-x': { 'background-repeat': 'repeat-x' },
'.bg-repeat-y': { 'background-repeat': 'repeat-y' },
'.bg-repeat-round': { 'background-repeat': 'round' },
'.bg-repeat-space': { 'background-repeat': 'space' },
},
variants('backgroundRepeat')
)
}
}