@mapcss/preset-typography
Version:
Typography preset for MapCSS
19 lines (18 loc) • 657 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.justify = void 0;
exports.justify = {
start: { "justify-content": "flex-start" },
end: { "justify-content": "flex-end" },
center: { "justify-content": "center" },
between: { "justify-content": "space-between" },
around: { "justify-content": "space-around" },
evenly: { "justify-content": "space-evenly" },
self: {
auto: { "justify-self": "auto" },
start: { "justify-self": "start" },
end: { "justify-self": "end" },
center: { "justify-self": "center" },
stretch: { "justify-self": "stretch" },
},
};