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

39 lines
633 B
Plaintext

@import '../../../../scss/styles.scss';
$icon-width: base(2);
$icon-margin: base(0.25);
@layer payload-default {
.block-search {
position: sticky;
top: 0;
display: flex;
width: 100%;
align-items: center;
z-index: 1;
&__input {
@include formInput;
}
.icon--search {
position: absolute;
top: 50%;
transform: translate3d(0, -50%, 0);
right: 0;
width: $icon-width;
margin: 0 $icon-margin;
.stroke {
stroke: var(--theme-elevation-300);
}
}
@include mid-break {
&__input {
margin-bottom: 0;
}
}
}
}