Commit updated Javascript packages
This commit is contained in:
34
build/javascript/node_modules/tailwindcss/lib/plugins/backgroundRepeat.js
generated
vendored
Normal file
34
build/javascript/node_modules/tailwindcss/lib/plugins/backgroundRepeat.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = _default;
|
||||
|
||||
function _default() {
|
||||
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'));
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user