Files
klz-cables.com/.pnpm-store/v10/files/64/1c4cf1b557d5a3962dffc698252bcb623edaf841594068c0632dbbe6981d3d7cf091717ef6e1af76bb940b63acf736995708c22a4e37ddcc51ea2b0638cfa6
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

51 lines
750 B
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.point {
position: relative;
& .input-wrapper {
position: relative;
}
&__wrap {
display: flex;
width: calc(100% + #{base(1)});
margin: 0;
margin-left: base(-0.5);
margin-right: base(-0.5);
list-style: none;
padding: 0;
li {
padding: 0 base(0.5);
width: 50%;
}
}
input {
@include formInput;
}
}
html[data-theme='light'] {
.point {
&.error {
input {
@include lightInputError;
}
}
}
}
html[data-theme='dark'] {
.point {
&.error {
input {
@include darkInputError;
}
}
}
}
}