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

32 lines
510 B
Plaintext

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