Commit updated Javascript packages
This commit is contained in:
34
build/javascript/node_modules/tailwindcss/lib/plugins/justifyContent.js
generated
vendored
Normal file
34
build/javascript/node_modules/tailwindcss/lib/plugins/justifyContent.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({
|
||||
'.justify-start': {
|
||||
'justify-content': 'flex-start'
|
||||
},
|
||||
'.justify-end': {
|
||||
'justify-content': 'flex-end'
|
||||
},
|
||||
'.justify-center': {
|
||||
'justify-content': 'center'
|
||||
},
|
||||
'.justify-between': {
|
||||
'justify-content': 'space-between'
|
||||
},
|
||||
'.justify-around': {
|
||||
'justify-content': 'space-around'
|
||||
},
|
||||
'.justify-evenly': {
|
||||
'justify-content': 'space-evenly'
|
||||
}
|
||||
}, variants('justifyContent'));
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user