Files
klz-cables.com/.pnpm-store/v10/files/c3/94cee576ba5e07db98121f242b5f7f93dc201dcfbca3821ada9d1e264a1de0ab1360b6c53efa9849a72ad93caa5ace3551acd522def228d2216787051ef1e3
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

38 lines
548 B
Plaintext

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