Files
klz-cables.com/.pnpm-store/v10/files/4d/a2a7ea7ed13c338c89a01dfdba09812e7926c11261fc017785aa5d311524f4e01e8f3038d03d8596ad175cd48465f99c058e8f5ac83365d0ab34eb7fb1e499
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

48 lines
1.1 KiB
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.pill-selector {
display: flex;
flex-wrap: wrap;
background: var(--theme-elevation-50);
padding: var(--base);
gap: calc(var(--base) / 2);
&__pill {
background-color: transparent;
box-shadow: 0 0 0 1px var(--theme-elevation-150);
&.pill-selector__pill {
cursor: pointer;
&:hover {
background-color: var(--theme-elevation-100);
}
}
&.pill-selector__pill--selected {
background-color: var(--theme-elevation-0);
box-shadow:
0 0px 1px 1px var(--theme-elevation-150),
0 2px 4px -2px rgba(0, 0, 0, 0.1);
&:hover {
background-color: var(--theme-elevation-0);
box-shadow:
0 0px 1px 1px var(--theme-elevation-250),
0 3px 4px -1px rgba(0, 0, 0, 0.1);
}
}
}
// TODO: delete this once all icons have been migrated to viewbox edge-to-edge
.pill__icon {
padding: 0;
}
@include small-break {
padding: calc(var(--base) / 2);
}
}
}