Files
klz-cables.com/.pnpm-store/v10/files/2c/b48bf67e04e2ac29c1f292629703063bca3d87a3c53fe9535cdb655a6763ab86ea089bd6d47d6a89b03e72bd8225fbdba2778c26deeb723fd33bb74844bcdc
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
869 B
Plaintext

@import '../../../scss/styles.scss';
@layer payload-default {
.clickable-arrow {
cursor: pointer;
@extend %btn-reset;
width: base(1.5);
height: base(1.5);
display: flex;
justify-content: center;
align-content: center;
align-items: center;
outline: 0;
padding: base(0.25);
color: var(--theme-elevation-800);
line-height: base(1);
&:not(.clickable-arrow--is-disabled) {
&:hover,
&:focus-visible {
background: var(--theme-elevation-100);
}
}
&:focus-visible {
outline: var(--accessibility-outline);
}
&--right {
.icon {
transform: rotate(-90deg);
}
}
&--left .icon {
transform: rotate(90deg);
}
&--is-disabled {
cursor: default;
.icon .stroke {
stroke: var(--theme-elevation-400);
}
}
}
}