tailwindcss/src/plugins/backgroundAttachment.js

13 lines
341 B
JavaScript

export default function() {
return function({ addUtilities, variants }) {
addUtilities(
{
'.bg-fixed': { 'background-attachment': 'fixed' },
'.bg-local': { 'background-attachment': 'local' },
'.bg-scroll': { 'background-attachment': 'scroll' },
},
variants('backgroundAttachment')
)
}
}