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

28 lines
427 B
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.field-type.select {
position: relative;
}
html[data-theme='light'] {
.field-type.select {
&.error {
.rs__control {
@include lightInputError;
}
}
}
}
html[data-theme='dark'] {
.field-type.select {
&.error {
.rs__control {
@include darkInputError;
}
}
}
}
}