Files
klz-cables.com/.pnpm-store/v10/files/93/7f0ccebfdea87503856d930fb89bc165b84ef3eea0db6ce2311a36087dc77a3c3a362a7a11a63d5a76154d39e0c8bd9bb2c1e97e748bb51b25325041544f39
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

34 lines
493 B
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.field-type.number {
position: relative;
&:not(.has-many) {
input {
@include formInput;
}
}
}
html[data-theme='light'] {
.field-type.number {
&.error {
input {
@include lightInputError;
}
}
}
}
html[data-theme='dark'] {
.field-type.number {
&.error {
input {
@include darkInputError;
}
}
}
}
}