mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
36 lines
696 B
JavaScript
36 lines
696 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = _default;
|
|
|
|
function _default() {
|
|
return function ({
|
|
addUtilities,
|
|
variants,
|
|
target
|
|
}) {
|
|
if (target('justifyItems') === 'ie11') {
|
|
return;
|
|
}
|
|
|
|
addUtilities({
|
|
'.justify-items-auto': {
|
|
'justify-items': 'auto'
|
|
},
|
|
'.justify-items-start': {
|
|
'justify-items': 'start'
|
|
},
|
|
'.justify-items-end': {
|
|
'justify-items': 'end'
|
|
},
|
|
'.justify-items-center': {
|
|
'justify-items': 'center'
|
|
},
|
|
'.justify-items-stretch': {
|
|
'justify-items': 'stretch'
|
|
}
|
|
}, variants('justifyItems'));
|
|
};
|
|
} |