Commit updated Javascript packages
This commit is contained in:
30
build/javascript/node_modules/tailwindcss/lib/plugins/float.js
generated
vendored
Normal file
30
build/javascript/node_modules/tailwindcss/lib/plugins/float.js
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = _default;
|
||||
|
||||
function _default() {
|
||||
return function ({
|
||||
addUtilities,
|
||||
variants
|
||||
}) {
|
||||
addUtilities({
|
||||
'.float-right': {
|
||||
float: 'right'
|
||||
},
|
||||
'.float-left': {
|
||||
float: 'left'
|
||||
},
|
||||
'.float-none': {
|
||||
float: 'none'
|
||||
},
|
||||
'.clearfix:after': {
|
||||
content: '""',
|
||||
display: 'table',
|
||||
clear: 'both'
|
||||
}
|
||||
}, variants('float'));
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user