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

53 lines
906 B
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.sort-header {
display: flex;
gap: calc(var(--base) / 2);
align-items: center;
&__buttons {
display: flex;
align-items: center;
gap: calc(var(--base) / 4);
}
&__button {
margin: 0;
padding: 0 !important;
opacity: 0.3;
padding: calc(var(--base) / 4);
display: inline-flex;
align-items: center;
justify-content: center;
background: transparent;
border: none;
cursor: pointer;
&.sort-header--active {
opacity: 1;
visibility: visible;
}
&:hover {
opacity: 0.7;
}
}
&:hover {
.btn {
opacity: 0.4;
visibility: visible;
}
}
&--appearance-condensed {
gap: calc(var(--base) / 4);
.sort-header__buttons {
gap: 0;
}
}
}
}