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

68 lines
1.1 KiB
Plaintext

@import '../../scss/styles.scss';
@layer payload-default {
.sort-column {
display: flex;
gap: calc(var(--base) / 2);
align-items: center;
&__label {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
&__label,
.btn {
vertical-align: middle;
display: inline-block;
}
&__label {
cursor: default;
}
&__buttons {
display: flex;
align-items: center;
gap: 0;
}
&__button {
margin: 0;
opacity: 0.3;
padding: calc(var(--base) / 4) 0;
display: inline-flex;
align-items: center;
justify-content: center;
background: transparent;
border: none;
cursor: pointer;
&.sort-column--active {
opacity: 1;
visibility: visible;
}
&:hover {
opacity: 0.7;
}
}
&:hover {
.btn {
opacity: 0.4;
visibility: visible;
}
}
&--appearance-condensed {
gap: calc(var(--base) / 4);
.sort-column__buttons {
gap: 0;
}
}
}
}