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

28 lines
678 B
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.sticky-toolbar {
padding: base(0.5);
position: sticky;
bottom: var(--base);
background-color: var(--theme-bg);
border: 1px solid var(--theme-elevation-100);
max-width: 500px;
z-index: 1;
margin-left: 50%;
transform: translate3d(-50%, 0, 0);
border-radius: var(--style-radius-m);
box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
margin-top: base(2);
@include small-break {
width: calc(100% - var(--base) * 2);
margin-left: var(--base);
transform: none;
position: relative;
max-width: unset;
margin-bottom: base(4);
}
}
}