Files
klz-cables.com/.pnpm-store/v10/files/b4/162dac6aaf380082a63c41e339d30ae869fb3c2c0265b76a43e2ff8cd9b823557848e27000618012fc606978c81f1353f4447e60a3cdb1542359f2887c9b2b
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

49 lines
1.2 KiB
Plaintext

@import '../../../scss/styles.scss';
@layer payload-default {
.live-preview-toggler {
background: none;
border: none;
border: 1px solid;
border-color: var(--theme-elevation-100);
border-radius: var(--style-radius-s);
line-height: var(--btn-line-height);
font-size: var(--base-body-size);
padding: calc(var(--base) * 0.2) calc(var(--base) * 0.4);
cursor: pointer;
transition-property: border, color, background;
transition-duration: 100ms;
transition-timing-function: cubic-bezier(0, 0.2, 0.2, 1);
height: calc(var(--base) * 1.6);
width: calc(var(--base) * 1.6);
position: relative;
.icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
.stroke {
transition-property: stroke;
transition-duration: 100ms;
transition-timing-function: cubic-bezier(0, 0.2, 0.2, 1);
}
}
&:hover {
border-color: var(--theme-elevation-300);
background-color: var(--theme-elevation-100);
}
&--active {
background-color: var(--theme-elevation-100);
border-color: var(--theme-elevation-200);
&:hover {
background-color: var(--theme-elevation-200);
}
}
}
}