Files
klz-cables.com/.pnpm-store/v10/files/23/b92f93e65046863ead30ac79a8e84506f43de37b9646efbc7b07d75bb93c8f07b20178652288a9fb15afdbfc0cf20b33375d75e7079b49a229ccd56ad831bc
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

22 lines
598 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.textAlign = void 0;
exports.textAlign = {
name: 'text-align',
initialValue: 'left',
prefix: false,
type: 2 /* IDENT_VALUE */,
parse: function (_context, textAlign) {
switch (textAlign) {
case 'right':
return 2 /* RIGHT */;
case 'center':
case 'justify':
return 1 /* CENTER */;
case 'left':
default:
return 0 /* LEFT */;
}
}
};
//# sourceMappingURL=text-align.js.map