Files
klz-cables.com/.pnpm-store/v10/files/22/9485d1add1df11be13f62a435f809ed0993f3e7bee2767d89d562cea6c58cc73423fe6df37bf99ec24d9c53e99e76eb799a368bccb4ac02daf9e9f2c553121
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

40 lines
563 B
Plaintext

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