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

24 lines
437 B
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
html[data-theme='light'] {
.date-time-field {
&--has-error {
.react-datepicker__input-container input {
@include lightInputError;
}
}
}
}
html[data-theme='dark'] {
.date-time-field {
&--has-error {
.react-datepicker__input-container input {
@include darkInputError;
}
}
}
}
}