Syllabus/themes/piratecare/node_modules/tailwindcss/lib/plugins/float.js

30 lines
512 B
JavaScript
Raw Normal View History

2020-03-05 04:10:52 +00:00
"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'));
};
}