tailwindcss/src/plugins/backgroundRepeat.js

14 lines
400 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' },
},
variants('backgroundRepeat')
)
}
}