Commit updated Javascript packages
This commit is contained in:
34
build/javascript/node_modules/tailwindcss/lib/plugins/position.js
generated
vendored
Normal file
34
build/javascript/node_modules/tailwindcss/lib/plugins/position.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,
|
||||
target
|
||||
}) {
|
||||
addUtilities({
|
||||
'.static': {
|
||||
position: 'static'
|
||||
},
|
||||
'.fixed': {
|
||||
position: 'fixed'
|
||||
},
|
||||
'.absolute': {
|
||||
position: 'absolute'
|
||||
},
|
||||
'.relative': {
|
||||
position: 'relative'
|
||||
},
|
||||
...(target('position') === 'ie11' ? {} : {
|
||||
'.sticky': {
|
||||
position: 'sticky'
|
||||
}
|
||||
})
|
||||
}, variants('position'));
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user